|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<ui version="4.0"> |
| 3 | + <class>MainWindow</class> |
| 4 | + <widget class="QMainWindow" name="MainWindow"> |
| 5 | + <property name="geometry"> |
| 6 | + <rect> |
| 7 | + <x>0</x> |
| 8 | + <y>0</y> |
| 9 | + <width>800</width> |
| 10 | + <height>600</height> |
| 11 | + </rect> |
| 12 | + </property> |
| 13 | + <property name="windowTitle"> |
| 14 | + <string>SimpleCryptGUI</string> |
| 15 | + </property> |
| 16 | + <property name="locale"> |
| 17 | + <locale language="English" country="UnitedStates"/> |
| 18 | + </property> |
| 19 | + <widget class="QWidget" name="centralwidget"> |
| 20 | + <layout class="QVBoxLayout" name="verticalLayout"> |
| 21 | + <property name="spacing"> |
| 22 | + <number>0</number> |
| 23 | + </property> |
| 24 | + <property name="leftMargin"> |
| 25 | + <number>0</number> |
| 26 | + </property> |
| 27 | + <property name="topMargin"> |
| 28 | + <number>0</number> |
| 29 | + </property> |
| 30 | + <property name="rightMargin"> |
| 31 | + <number>0</number> |
| 32 | + </property> |
| 33 | + <property name="bottomMargin"> |
| 34 | + <number>0</number> |
| 35 | + </property> |
| 36 | + <item> |
| 37 | + <widget class="QFrame" name="frame"> |
| 38 | + <property name="frameShape"> |
| 39 | + <enum>QFrame::StyledPanel</enum> |
| 40 | + </property> |
| 41 | + <property name="frameShadow"> |
| 42 | + <enum>QFrame::Raised</enum> |
| 43 | + </property> |
| 44 | + <layout class="QHBoxLayout" name="horizontalLayout"> |
| 45 | + <item> |
| 46 | + <widget class="QToolButton" name="loadFromFile"> |
| 47 | + <property name="text"> |
| 48 | + <string>Load from file</string> |
| 49 | + </property> |
| 50 | + <property name="icon"> |
| 51 | + <iconset resource="SimpleCryptGUI.qrc"> |
| 52 | + <normaloff>:/icons/LoadFromFile.svg</normaloff>:/icons/LoadFromFile.svg</iconset> |
| 53 | + </property> |
| 54 | + <property name="iconSize"> |
| 55 | + <size> |
| 56 | + <width>32</width> |
| 57 | + <height>32</height> |
| 58 | + </size> |
| 59 | + </property> |
| 60 | + <property name="toolButtonStyle"> |
| 61 | + <enum>Qt::ToolButtonTextUnderIcon</enum> |
| 62 | + </property> |
| 63 | + </widget> |
| 64 | + </item> |
| 65 | + <item> |
| 66 | + <widget class="QToolButton" name="saveToFile"> |
| 67 | + <property name="text"> |
| 68 | + <string>Save to file</string> |
| 69 | + </property> |
| 70 | + <property name="icon"> |
| 71 | + <iconset resource="SimpleCryptGUI.qrc"> |
| 72 | + <normaloff>:/icons/SaveToFile.svg</normaloff>:/icons/SaveToFile.svg</iconset> |
| 73 | + </property> |
| 74 | + <property name="iconSize"> |
| 75 | + <size> |
| 76 | + <width>32</width> |
| 77 | + <height>32</height> |
| 78 | + </size> |
| 79 | + </property> |
| 80 | + <property name="toolButtonStyle"> |
| 81 | + <enum>Qt::ToolButtonTextUnderIcon</enum> |
| 82 | + </property> |
| 83 | + </widget> |
| 84 | + </item> |
| 85 | + <item> |
| 86 | + <widget class="Line" name="line"> |
| 87 | + <property name="orientation"> |
| 88 | + <enum>Qt::Vertical</enum> |
| 89 | + </property> |
| 90 | + </widget> |
| 91 | + </item> |
| 92 | + <item> |
| 93 | + <widget class="QLabel" name="label"> |
| 94 | + <property name="text"> |
| 95 | + <string>Key</string> |
| 96 | + </property> |
| 97 | + </widget> |
| 98 | + </item> |
| 99 | + <item> |
| 100 | + <widget class="QLineEdit" name="key"> |
| 101 | + <property name="sizePolicy"> |
| 102 | + <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> |
| 103 | + <horstretch>0</horstretch> |
| 104 | + <verstretch>0</verstretch> |
| 105 | + </sizepolicy> |
| 106 | + </property> |
| 107 | + <property name="minimumSize"> |
| 108 | + <size> |
| 109 | + <width>150</width> |
| 110 | + <height>0</height> |
| 111 | + </size> |
| 112 | + </property> |
| 113 | + <property name="inputMask"> |
| 114 | + <string>HHHHHHHHHHHHHHHH</string> |
| 115 | + </property> |
| 116 | + </widget> |
| 117 | + </item> |
| 118 | + <item> |
| 119 | + <widget class="QToolButton" name="generateKey"> |
| 120 | + <property name="text"> |
| 121 | + <string>Generate</string> |
| 122 | + </property> |
| 123 | + <property name="icon"> |
| 124 | + <iconset resource="SimpleCryptGUI.qrc"> |
| 125 | + <normaloff>:/icons/Key.svg</normaloff>:/icons/Key.svg</iconset> |
| 126 | + </property> |
| 127 | + <property name="iconSize"> |
| 128 | + <size> |
| 129 | + <width>32</width> |
| 130 | + <height>32</height> |
| 131 | + </size> |
| 132 | + </property> |
| 133 | + <property name="toolButtonStyle"> |
| 134 | + <enum>Qt::ToolButtonTextUnderIcon</enum> |
| 135 | + </property> |
| 136 | + </widget> |
| 137 | + </item> |
| 138 | + <item> |
| 139 | + <widget class="Line" name="line_2"> |
| 140 | + <property name="orientation"> |
| 141 | + <enum>Qt::Vertical</enum> |
| 142 | + </property> |
| 143 | + </widget> |
| 144 | + </item> |
| 145 | + <item> |
| 146 | + <widget class="QToolButton" name="encrypt"> |
| 147 | + <property name="text"> |
| 148 | + <string>Encrypt</string> |
| 149 | + </property> |
| 150 | + <property name="icon"> |
| 151 | + <iconset resource="SimpleCryptGUI.qrc"> |
| 152 | + <normaloff>:/icons/Encrypt.svg</normaloff>:/icons/Encrypt.svg</iconset> |
| 153 | + </property> |
| 154 | + <property name="iconSize"> |
| 155 | + <size> |
| 156 | + <width>32</width> |
| 157 | + <height>32</height> |
| 158 | + </size> |
| 159 | + </property> |
| 160 | + <property name="toolButtonStyle"> |
| 161 | + <enum>Qt::ToolButtonTextUnderIcon</enum> |
| 162 | + </property> |
| 163 | + </widget> |
| 164 | + </item> |
| 165 | + <item> |
| 166 | + <widget class="QToolButton" name="decrypt"> |
| 167 | + <property name="text"> |
| 168 | + <string>Decrypt</string> |
| 169 | + </property> |
| 170 | + <property name="icon"> |
| 171 | + <iconset resource="SimpleCryptGUI.qrc"> |
| 172 | + <normaloff>:/icons/Decrypt.svg</normaloff>:/icons/Decrypt.svg</iconset> |
| 173 | + </property> |
| 174 | + <property name="iconSize"> |
| 175 | + <size> |
| 176 | + <width>32</width> |
| 177 | + <height>32</height> |
| 178 | + </size> |
| 179 | + </property> |
| 180 | + <property name="toolButtonStyle"> |
| 181 | + <enum>Qt::ToolButtonTextUnderIcon</enum> |
| 182 | + </property> |
| 183 | + </widget> |
| 184 | + </item> |
| 185 | + <item> |
| 186 | + <spacer name="horizontalSpacer"> |
| 187 | + <property name="orientation"> |
| 188 | + <enum>Qt::Horizontal</enum> |
| 189 | + </property> |
| 190 | + <property name="sizeHint" stdset="0"> |
| 191 | + <size> |
| 192 | + <width>40</width> |
| 193 | + <height>20</height> |
| 194 | + </size> |
| 195 | + </property> |
| 196 | + </spacer> |
| 197 | + </item> |
| 198 | + </layout> |
| 199 | + </widget> |
| 200 | + </item> |
| 201 | + <item> |
| 202 | + <widget class="QPlainTextEdit" name="text"> |
| 203 | + <property name="undoRedoEnabled"> |
| 204 | + <bool>false</bool> |
| 205 | + </property> |
| 206 | + <property name="plainText"> |
| 207 | + <string notr="true"/> |
| 208 | + </property> |
| 209 | + </widget> |
| 210 | + </item> |
| 211 | + </layout> |
| 212 | + </widget> |
| 213 | + </widget> |
| 214 | + <resources> |
| 215 | + <include location="SimpleCryptGUI.qrc"/> |
| 216 | + </resources> |
| 217 | + <connections/> |
| 218 | +</ui> |
0 commit comments