| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 | <?xml version="1.0" encoding="UTF-8"?><ui version="4.0"> <class>BrainyWindow</class> <widget class="QMainWindow" name="BrainyWindow">  <property name="geometry">   <rect>    <x>0</x>    <y>0</y>    <width>1091</width>    <height>560</height>   </rect>  </property>  <property name="windowTitle">   <string>Brainy</string>  </property>  <property name="windowIcon">   <iconset theme="document-new"/>  </property>  <widget class="QWidget" name="centralWidget">   <layout class="QVBoxLayout" name="verticalLayout">    <item>     <widget class="QTextEdit" name="textEdit">      <property name="font">       <font>        <family>Courier New</family>        <pointsize>10</pointsize>       </font>      </property>      <property name="layoutDirection">       <enum>Qt::LeftToRight</enum>      </property>      <property name="html">       <string><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"><html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Courier New'; font-size:10pt; font-weight:400; font-style:normal;"><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></string>      </property>      <property name="acceptRichText">       <bool>false</bool>      </property>     </widget>    </item>   </layout>  </widget>  <widget class="QMenuBar" name="menuBar">   <property name="geometry">    <rect>     <x>0</x>     <y>0</y>     <width>1091</width>     <height>21</height>    </rect>   </property>   <widget class="QMenu" name="menuFile">    <property name="title">     <string>File</string>    </property>    <addaction name="actionNew_File"/>    <addaction name="separator"/>    <addaction name="actionOpen_2"/>    <addaction name="actionSave_2"/>   </widget>   <widget class="QMenu" name="menuOptions">    <property name="title">     <string>Options</string>    </property>    <addaction name="actionEditor_Font"/>   </widget>   <addaction name="menuFile"/>   <addaction name="menuOptions"/>  </widget>  <widget class="QStatusBar" name="statusBar"/>  <action name="actionNew_File">   <property name="text">    <string>New File</string>   </property>   <property name="statusTip">    <string>Creates a new file</string>   </property>   <property name="shortcut">    <string>Ctrl+N</string>   </property>  </action>  <action name="actionOpen">   <property name="text">    <string>Open</string>   </property>  </action>  <action name="actionSave">   <property name="text">    <string>Save</string>   </property>  </action>  <action name="actionOpen_2">   <property name="text">    <string>&Open</string>   </property>   <property name="shortcut">    <string>Ctrl+O</string>   </property>  </action>  <action name="actionSave_2">   <property name="text">    <string>&Save</string>   </property>   <property name="shortcut">    <string>Ctrl+S</string>   </property>  </action>  <action name="actionEditor_Font">   <property name="text">    <string>Editor Font</string>   </property>  </action> </widget> <layoutdefault spacing="6" margin="11"/> <resources/> <connections/></ui>
 |