Browse Source

latest update with default clearing behaviour

logicp 5 years ago
parent
commit
0a6705a4d5
7 changed files with 28 additions and 9 deletions
  1. 5 3
      argdialog.ui
  2. 11 2
      consoledialog.ui
  3. 2 0
      kres.qrc
  4. 2 2
      mainwindow.ui
  5. 1 0
      src/argdialog.cpp
  6. 1 1
      ui_argdialog.h
  7. 6 1
      ui_consoledialog.h

+ 5 - 3
argdialog.ui

@@ -14,8 +14,8 @@
    <string>Dialog</string>
   </property>
   <property name="windowIcon">
-   <iconset>
-    <normaloff>favicon.ico</normaloff>favicon.ico</iconset>
+   <iconset resource="kres.qrc">
+    <normaloff>:/icons/favicon.ico</normaloff>:/icons/favicon.ico</iconset>
   </property>
   <property name="styleSheet">
    <string notr="true">border-color: rgb(0, 0, 0);
@@ -465,7 +465,9 @@ padding: 4px;</string>
    </layout>
   </widget>
  </widget>
- <resources/>
+ <resources>
+  <include location="kres.qrc"/>
+ </resources>
  <connections>
   <connection>
    <sender>argCommandButtons</sender>

+ 11 - 2
consoledialog.ui

@@ -13,6 +13,10 @@
   <property name="windowTitle">
    <string>Dialog</string>
   </property>
+  <property name="windowIcon">
+   <iconset resource="kres.qrc">
+    <normaloff>:/icons/log.png</normaloff>:/icons/log.png</iconset>
+  </property>
   <widget class="QTextEdit" name="consoleText">
    <property name="geometry">
     <rect>
@@ -22,6 +26,9 @@
      <height>721</height>
     </rect>
    </property>
+   <property name="styleSheet">
+    <string notr="true">color: rgb(38, 255, 0);</string>
+   </property>
    <property name="readOnly">
     <bool>false</bool>
    </property>
@@ -31,7 +38,7 @@
     <rect>
      <x>300</x>
      <y>20</y>
-     <width>51</width>
+     <width>71</width>
      <height>18</height>
     </rect>
    </property>
@@ -53,6 +60,8 @@
    </property>
   </widget>
  </widget>
- <resources/>
+ <resources>
+  <include location="kres.qrc"/>
+ </resources>
  <connections/>
 </ui>

+ 2 - 0
kres.qrc

@@ -9,6 +9,8 @@
         <file>icons/erase.png</file>
         <file>icons/trash.png</file>
         <file>icons/clip.png</file>
+        <file>favicon.ico</file>
+        <file>icons/log.svg</file>
     </qresource>
     <qresource prefix="/">
         <file>icons/log.png</file>

+ 2 - 2
mainwindow.ui

@@ -14,8 +14,8 @@
    <string>MainWindow</string>
   </property>
   <property name="windowIcon">
-   <iconset>
-    <normaloff>favicon.ico</normaloff>favicon.ico</iconset>
+   <iconset resource="kres.qrc">
+    <normaloff>:/icons/favicon.ico</normaloff>:/icons/favicon.ico</iconset>
   </property>
   <property name="styleSheet">
    <string notr="true">font: 87 10pt &quot;Noto Sans&quot;;

+ 1 - 0
src/argdialog.cpp

@@ -199,6 +199,7 @@ void ArgDialog::clearPost() {
   m_ig_post.promote_share = "Share the post through IG story if you enjoy the phrase 🙋‍♀️";
   m_ig_post.requested_by_phrase = "The phrase was requested by ";
   ui->argType->setCurrentIndex(0);
+  ui->argList->setRowCount(0);
 }
 
 void ArgDialog::clearTask() {

+ 1 - 1
ui_argdialog.h

@@ -59,7 +59,7 @@ public:
             ArgDialog->setObjectName(QString::fromUtf8("ArgDialog"));
         ArgDialog->resize(970, 864);
         QIcon icon;
-        icon.addFile(QString::fromUtf8("favicon.ico"), QSize(), QIcon::Normal, QIcon::Off);
+        icon.addFile(QString::fromUtf8(":/icons/favicon.ico"), QSize(), QIcon::Normal, QIcon::Off);
         ArgDialog->setWindowIcon(icon);
         ArgDialog->setStyleSheet(QString::fromUtf8("border-color: rgb(0, 0, 0);\n"
 "background-color: rgb(0, 43, 54);"));

+ 6 - 1
ui_consoledialog.h

@@ -10,6 +10,7 @@
 #define UI_CONSOLEDIALOG_H
 
 #include <QtCore/QVariant>
+#include <QtGui/QIcon>
 #include <QtWidgets/QApplication>
 #include <QtWidgets/QDialog>
 #include <QtWidgets/QLabel>
@@ -30,13 +31,17 @@ public:
         if (ConsoleDialog->objectName().isEmpty())
             ConsoleDialog->setObjectName(QString::fromUtf8("ConsoleDialog"));
         ConsoleDialog->resize(721, 836);
+        QIcon icon;
+        icon.addFile(QString::fromUtf8(":/icons/log.png"), QSize(), QIcon::Normal, QIcon::Off);
+        ConsoleDialog->setWindowIcon(icon);
         consoleText = new QTextEdit(ConsoleDialog);
         consoleText->setObjectName(QString::fromUtf8("consoleText"));
         consoleText->setGeometry(QRect(30, 60, 661, 721));
+        consoleText->setStyleSheet(QString::fromUtf8("color: rgb(38, 255, 0);"));
         consoleText->setReadOnly(false);
         consoleTitle = new QLabel(ConsoleDialog);
         consoleTitle->setObjectName(QString::fromUtf8("consoleTitle"));
-        consoleTitle->setGeometry(QRect(300, 20, 51, 18));
+        consoleTitle->setGeometry(QRect(300, 20, 71, 18));
         closeConsole = new QPushButton(ConsoleDialog);
         closeConsole->setObjectName(QString::fromUtf8("closeConsole"));
         closeConsole->setGeometry(QRect(600, 800, 80, 26));