2021-04-06 23:10:57 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<ui version="4.0">
|
|
|
|
<class>MainWindow</class>
|
|
|
|
<widget class="QMainWindow" name="MainWindow">
|
|
|
|
<property name="geometry">
|
|
|
|
<rect>
|
|
|
|
<x>0</x>
|
|
|
|
<y>0</y>
|
2021-11-01 20:44:08 +08:00
|
|
|
<width>1114</width>
|
2021-10-31 17:01:34 +08:00
|
|
|
<height>742</height>
|
2021-04-06 23:10:57 +08:00
|
|
|
</rect>
|
|
|
|
</property>
|
|
|
|
<property name="windowTitle">
|
2021-04-08 10:29:21 +08:00
|
|
|
<string>Red Panda C++</string>
|
|
|
|
</property>
|
|
|
|
<property name="windowIcon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/devcpp.ico</normalon>
|
|
|
|
</iconset>
|
2021-04-06 23:10:57 +08:00
|
|
|
</property>
|
|
|
|
<widget class="QWidget" name="centralwidget">
|
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
2021-04-07 22:44:08 +08:00
|
|
|
<property name="leftMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
2021-04-06 23:10:57 +08:00
|
|
|
<item>
|
2021-06-23 22:38:02 +08:00
|
|
|
<widget class="QSplitter" name="splitterMessages">
|
2021-04-06 23:10:57 +08:00
|
|
|
<property name="orientation">
|
|
|
|
<enum>Qt::Vertical</enum>
|
|
|
|
</property>
|
2021-06-24 16:05:19 +08:00
|
|
|
<property name="handleWidth">
|
|
|
|
<number>1</number>
|
|
|
|
</property>
|
2021-06-23 22:38:02 +08:00
|
|
|
<property name="childrenCollapsible">
|
|
|
|
<bool>false</bool>
|
|
|
|
</property>
|
2021-04-06 23:10:57 +08:00
|
|
|
<widget class="QWidget" name="widget" native="true">
|
|
|
|
<property name="sizePolicy">
|
|
|
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
|
|
<horstretch>0</horstretch>
|
2021-04-20 22:24:33 +08:00
|
|
|
<verstretch>1</verstretch>
|
2021-04-06 23:10:57 +08:00
|
|
|
</sizepolicy>
|
|
|
|
</property>
|
|
|
|
<layout class="QVBoxLayout" name="verticalLayout">
|
2021-04-07 22:44:08 +08:00
|
|
|
<property name="leftMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
2021-04-06 23:10:57 +08:00
|
|
|
<item>
|
2021-06-23 22:38:02 +08:00
|
|
|
<widget class="QSplitter" name="splitterInfos">
|
2021-04-06 23:10:57 +08:00
|
|
|
<property name="orientation">
|
|
|
|
<enum>Qt::Horizontal</enum>
|
|
|
|
</property>
|
2021-06-24 16:05:19 +08:00
|
|
|
<property name="handleWidth">
|
|
|
|
<number>1</number>
|
|
|
|
</property>
|
2021-06-23 22:38:02 +08:00
|
|
|
<property name="childrenCollapsible">
|
|
|
|
<bool>false</bool>
|
|
|
|
</property>
|
|
|
|
<widget class="QTabWidget" name="tabInfos">
|
2021-04-06 23:10:57 +08:00
|
|
|
<property name="sizePolicy">
|
|
|
|
<sizepolicy hsizetype="Fixed" vsizetype="Expanding">
|
2021-08-27 23:51:42 +08:00
|
|
|
<horstretch>0</horstretch>
|
2021-04-06 23:10:57 +08:00
|
|
|
<verstretch>0</verstretch>
|
|
|
|
</sizepolicy>
|
|
|
|
</property>
|
|
|
|
<property name="tabPosition">
|
|
|
|
<enum>QTabWidget::West</enum>
|
|
|
|
</property>
|
2021-07-23 13:22:05 +08:00
|
|
|
<property name="currentIndex">
|
2021-11-10 21:28:08 +08:00
|
|
|
<number>1</number>
|
2021-07-23 13:22:05 +08:00
|
|
|
</property>
|
|
|
|
<property name="usesScrollButtons">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<widget class="QWidget" name="tabProject">
|
2021-10-21 08:04:41 +08:00
|
|
|
<attribute name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/049-newproj.png</normaloff>:/icons/images/newlook24/049-newproj.png</iconset>
|
|
|
|
</attribute>
|
2021-07-23 13:22:05 +08:00
|
|
|
<attribute name="title">
|
|
|
|
<string>Project</string>
|
|
|
|
</attribute>
|
2021-09-11 11:42:20 +08:00
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout_13">
|
|
|
|
<property name="leftMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<item>
|
2021-09-12 00:17:15 +08:00
|
|
|
<widget class="QTreeView" name="projectView">
|
2021-09-18 10:47:35 +08:00
|
|
|
<property name="editTriggers">
|
|
|
|
<set>QAbstractItemView::EditKeyPressed|QAbstractItemView::SelectedClicked</set>
|
|
|
|
</property>
|
2021-10-23 23:10:34 +08:00
|
|
|
<property name="dragEnabled">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="dragDropMode">
|
|
|
|
<enum>QAbstractItemView::InternalMove</enum>
|
|
|
|
</property>
|
|
|
|
<property name="defaultDropAction">
|
|
|
|
<enum>Qt::MoveAction</enum>
|
|
|
|
</property>
|
2021-09-17 17:15:35 +08:00
|
|
|
<property name="selectionMode">
|
2021-10-24 12:04:37 +08:00
|
|
|
<enum>QAbstractItemView::SingleSelection</enum>
|
2021-09-17 19:58:37 +08:00
|
|
|
</property>
|
|
|
|
<property name="selectionBehavior">
|
|
|
|
<enum>QAbstractItemView::SelectRows</enum>
|
2021-09-17 17:15:35 +08:00
|
|
|
</property>
|
2021-10-24 00:17:08 +08:00
|
|
|
<property name="autoExpandDelay">
|
|
|
|
<number>500</number>
|
|
|
|
</property>
|
2021-09-12 00:17:15 +08:00
|
|
|
<attribute name="headerVisible">
|
|
|
|
<bool>false</bool>
|
|
|
|
</attribute>
|
|
|
|
</widget>
|
2021-09-11 11:42:20 +08:00
|
|
|
</item>
|
|
|
|
</layout>
|
2021-07-23 13:22:05 +08:00
|
|
|
</widget>
|
|
|
|
<widget class="QWidget" name="tabWatch">
|
2021-10-21 08:04:41 +08:00
|
|
|
<attribute name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/088-watch.png</normaloff>:/icons/images/newlook24/088-watch.png</iconset>
|
|
|
|
</attribute>
|
2021-07-23 13:22:05 +08:00
|
|
|
<attribute name="title">
|
|
|
|
<string>Watch</string>
|
|
|
|
</attribute>
|
2021-08-01 01:06:43 +08:00
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout_10">
|
|
|
|
<property name="leftMargin">
|
|
|
|
<number>2</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>2</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>2</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>2</number>
|
|
|
|
</property>
|
|
|
|
<item>
|
|
|
|
<widget class="QTreeView" name="watchView">
|
|
|
|
<property name="editTriggers">
|
|
|
|
<set>QAbstractItemView::NoEditTriggers</set>
|
|
|
|
</property>
|
2021-09-19 14:28:30 +08:00
|
|
|
<property name="textElideMode">
|
|
|
|
<enum>Qt::ElideNone</enum>
|
|
|
|
</property>
|
2021-08-01 01:06:43 +08:00
|
|
|
<property name="wordWrap">
|
|
|
|
<bool>false</bool>
|
2021-11-10 21:28:08 +08:00
|
|
|
</property>
|
|
|
|
<attribute name="headerDefaultSectionSize">
|
|
|
|
<number>50</number>
|
2021-08-01 01:06:43 +08:00
|
|
|
</attribute>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
</layout>
|
2021-07-23 13:22:05 +08:00
|
|
|
</widget>
|
|
|
|
<widget class="QWidget" name="tabStructure">
|
2021-10-21 08:04:41 +08:00
|
|
|
<attribute name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/087-update.png</normaloff>:/icons/images/newlook24/087-update.png</iconset>
|
|
|
|
</attribute>
|
2021-04-06 23:10:57 +08:00
|
|
|
<attribute name="title">
|
2021-07-23 13:22:05 +08:00
|
|
|
<string>Structure</string>
|
2021-04-06 23:10:57 +08:00
|
|
|
</attribute>
|
2021-08-23 17:27:17 +08:00
|
|
|
<layout class="QVBoxLayout" name="verticalLayout_5">
|
|
|
|
<property name="spacing">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="leftMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<item>
|
|
|
|
<widget class="QTreeView" name="classBrowser">
|
|
|
|
<property name="rootIsDecorated">
|
2021-09-25 23:12:36 +08:00
|
|
|
<bool>true</bool>
|
2021-08-23 17:27:17 +08:00
|
|
|
</property>
|
|
|
|
<attribute name="headerVisible">
|
|
|
|
<bool>false</bool>
|
|
|
|
</attribute>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
</layout>
|
2021-04-06 23:10:57 +08:00
|
|
|
</widget>
|
2021-10-22 07:42:51 +08:00
|
|
|
<widget class="QWidget" name="tabFiles">
|
|
|
|
<attribute name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/018-copy.png</normaloff>:/icons/images/newlook24/018-copy.png</iconset>
|
|
|
|
</attribute>
|
|
|
|
<attribute name="title">
|
|
|
|
<string>Files</string>
|
|
|
|
</attribute>
|
|
|
|
<layout class="QVBoxLayout" name="verticalLayout_3">
|
2021-10-22 15:02:54 +08:00
|
|
|
<property name="spacing">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
2021-10-22 07:42:51 +08:00
|
|
|
<property name="leftMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<item>
|
2021-10-22 15:02:54 +08:00
|
|
|
<widget class="QLineEdit" name="txtFilesPath">
|
|
|
|
<property name="frame">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="readOnly">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<widget class="QTreeView" name="treeFiles">
|
|
|
|
<property name="editTriggers">
|
|
|
|
<set>QAbstractItemView::EditKeyPressed|QAbstractItemView::SelectedClicked</set>
|
|
|
|
</property>
|
|
|
|
<property name="dragDropMode">
|
|
|
|
<enum>QAbstractItemView::DragOnly</enum>
|
|
|
|
</property>
|
|
|
|
</widget>
|
2021-10-22 07:42:51 +08:00
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
2021-10-31 17:01:34 +08:00
|
|
|
<widget class="QWidget" name="tabProblemSet">
|
2021-11-01 09:18:23 +08:00
|
|
|
<attribute name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/014-compopt.png</normaloff>:/icons/images/newlook24/014-compopt.png</iconset>
|
|
|
|
</attribute>
|
2021-10-31 17:01:34 +08:00
|
|
|
<attribute name="title">
|
|
|
|
<string>Problem Set</string>
|
|
|
|
</attribute>
|
|
|
|
<layout class="QVBoxLayout" name="verticalLayout_6">
|
|
|
|
<property name="spacing">
|
2021-11-06 10:36:25 +08:00
|
|
|
<number>3</number>
|
2021-10-31 17:01:34 +08:00
|
|
|
</property>
|
|
|
|
<property name="leftMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<item>
|
|
|
|
<widget class="QLabel" name="lblProblemSet">
|
2021-11-06 10:36:25 +08:00
|
|
|
<property name="frameShape">
|
|
|
|
<enum>QFrame::Panel</enum>
|
|
|
|
</property>
|
|
|
|
<property name="frameShadow">
|
|
|
|
<enum>QFrame::Plain</enum>
|
|
|
|
</property>
|
2021-10-31 17:01:34 +08:00
|
|
|
<property name="text">
|
|
|
|
<string>Problem Set</string>
|
|
|
|
</property>
|
2021-11-06 10:36:25 +08:00
|
|
|
<property name="margin">
|
|
|
|
<number>5</number>
|
|
|
|
</property>
|
2021-10-31 17:01:34 +08:00
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<widget class="QWidget" name="widget_2" native="true">
|
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout_15">
|
|
|
|
<property name="leftMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<item>
|
|
|
|
<widget class="QToolButton" name="btnNewProblemSet">
|
2021-11-01 00:40:11 +08:00
|
|
|
<property name="toolTip">
|
|
|
|
<string>New Problem Set</string>
|
|
|
|
</property>
|
2021-10-31 17:01:34 +08:00
|
|
|
<property name="text">
|
2021-11-01 00:40:11 +08:00
|
|
|
<string>New Problem Set</string>
|
2021-10-31 17:01:34 +08:00
|
|
|
</property>
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/050-newsrc.png</normaloff>:/icons/images/newlook24/050-newsrc.png</iconset>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<widget class="QToolButton" name="btnAddProblem">
|
2021-11-01 00:40:11 +08:00
|
|
|
<property name="toolTip">
|
|
|
|
<string>Add Problem</string>
|
|
|
|
</property>
|
2021-10-31 17:01:34 +08:00
|
|
|
<property name="text">
|
2021-11-01 00:40:11 +08:00
|
|
|
<string>Add Problem</string>
|
2021-10-31 17:01:34 +08:00
|
|
|
</property>
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/002-add.png</normaloff>:/icons/images/newlook24/002-add.png</iconset>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<widget class="QToolButton" name="btnRemoveProblem">
|
2021-11-01 00:40:11 +08:00
|
|
|
<property name="toolTip">
|
|
|
|
<string>Remove Problem</string>
|
|
|
|
</property>
|
2021-10-31 17:01:34 +08:00
|
|
|
<property name="text">
|
2021-11-01 00:40:11 +08:00
|
|
|
<string>Remove Problem</string>
|
2021-10-31 17:01:34 +08:00
|
|
|
</property>
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/008-close.png</normaloff>:/icons/images/newlook24/008-close.png</iconset>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<widget class="QToolButton" name="btnSaveProblemSet">
|
2021-11-01 00:40:11 +08:00
|
|
|
<property name="toolTip">
|
|
|
|
<string>Save Problem Set</string>
|
|
|
|
</property>
|
2021-10-31 17:01:34 +08:00
|
|
|
<property name="text">
|
2021-11-01 00:40:11 +08:00
|
|
|
<string>Save Problem Set</string>
|
2021-10-31 17:01:34 +08:00
|
|
|
</property>
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/072-saveas.png</normaloff>:/icons/images/newlook24/072-saveas.png</iconset>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<widget class="QToolButton" name="btnLoadProblemSet">
|
2021-11-01 00:40:11 +08:00
|
|
|
<property name="toolTip">
|
|
|
|
<string>Load Problem Set</string>
|
|
|
|
</property>
|
2021-10-31 17:01:34 +08:00
|
|
|
<property name="text">
|
2021-11-01 00:40:11 +08:00
|
|
|
<string>Load Problem Set</string>
|
2021-10-31 17:01:34 +08:00
|
|
|
</property>
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/053-open.png</normaloff>:/icons/images/newlook24/053-open.png</iconset>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<spacer name="horizontalSpacer_3">
|
|
|
|
<property name="orientation">
|
|
|
|
<enum>Qt::Horizontal</enum>
|
|
|
|
</property>
|
|
|
|
<property name="sizeHint" stdset="0">
|
|
|
|
<size>
|
|
|
|
<width>40</width>
|
|
|
|
<height>20</height>
|
|
|
|
</size>
|
|
|
|
</property>
|
|
|
|
</spacer>
|
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
2021-11-01 09:18:23 +08:00
|
|
|
<widget class="QListView" name="lstProblemSet">
|
|
|
|
<property name="alternatingRowColors">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="selectionBehavior">
|
|
|
|
<enum>QAbstractItemView::SelectRows</enum>
|
|
|
|
</property>
|
|
|
|
</widget>
|
2021-10-31 17:01:34 +08:00
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
2021-04-06 23:10:57 +08:00
|
|
|
</widget>
|
2021-04-07 21:13:15 +08:00
|
|
|
<widget class="QWidget" name="EditorPanel" native="true">
|
2021-04-06 23:10:57 +08:00
|
|
|
<property name="sizePolicy">
|
2021-08-01 12:02:28 +08:00
|
|
|
<sizepolicy hsizetype="Expanding" vsizetype="Preferred">
|
2021-08-27 23:51:42 +08:00
|
|
|
<horstretch>1</horstretch>
|
2021-04-06 23:10:57 +08:00
|
|
|
<verstretch>0</verstretch>
|
|
|
|
</sizepolicy>
|
|
|
|
</property>
|
|
|
|
<layout class="QVBoxLayout" name="verticalLayout_2">
|
2021-04-07 22:44:08 +08:00
|
|
|
<property name="spacing">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="leftMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
2021-04-06 23:10:57 +08:00
|
|
|
<item>
|
2021-06-24 16:05:19 +08:00
|
|
|
<widget class="QSplitter" name="splitterEditorPanel">
|
2021-08-27 23:51:42 +08:00
|
|
|
<property name="sizePolicy">
|
|
|
|
<sizepolicy hsizetype="Expanding" vsizetype="Preferred">
|
|
|
|
<horstretch>0</horstretch>
|
|
|
|
<verstretch>0</verstretch>
|
|
|
|
</sizepolicy>
|
|
|
|
</property>
|
2021-04-07 21:13:15 +08:00
|
|
|
<property name="orientation">
|
|
|
|
<enum>Qt::Horizontal</enum>
|
|
|
|
</property>
|
2021-06-24 16:05:19 +08:00
|
|
|
<property name="handleWidth">
|
|
|
|
<number>1</number>
|
|
|
|
</property>
|
2021-10-23 23:10:34 +08:00
|
|
|
<widget class="EditorsTabWidget" name="EditorTabsLeft">
|
2021-08-27 23:51:42 +08:00
|
|
|
<property name="sizePolicy">
|
|
|
|
<sizepolicy hsizetype="Ignored" vsizetype="Expanding">
|
|
|
|
<horstretch>0</horstretch>
|
|
|
|
<verstretch>0</verstretch>
|
|
|
|
</sizepolicy>
|
|
|
|
</property>
|
2021-04-07 21:13:15 +08:00
|
|
|
<property name="currentIndex">
|
|
|
|
<number>-1</number>
|
|
|
|
</property>
|
2021-04-11 13:55:31 +08:00
|
|
|
<property name="documentMode">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
2021-04-07 22:44:08 +08:00
|
|
|
<property name="tabsClosable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
2021-04-11 13:55:31 +08:00
|
|
|
<property name="movable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
2021-04-07 22:44:08 +08:00
|
|
|
</widget>
|
2021-10-23 23:10:34 +08:00
|
|
|
<widget class="EditorsTabWidget" name="EditorTabsRight">
|
2021-04-07 22:44:08 +08:00
|
|
|
<property name="enabled">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
2021-04-11 13:55:31 +08:00
|
|
|
<property name="documentMode">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
2021-04-07 22:44:08 +08:00
|
|
|
<property name="tabsClosable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
2021-04-11 13:55:31 +08:00
|
|
|
<property name="movable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
2021-04-07 21:13:15 +08:00
|
|
|
</widget>
|
|
|
|
</widget>
|
2021-04-06 23:10:57 +08:00
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
2021-06-23 22:38:02 +08:00
|
|
|
<widget class="QTabWidget" name="tabMessages">
|
2021-04-06 23:10:57 +08:00
|
|
|
<property name="sizePolicy">
|
|
|
|
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
|
|
|
|
<horstretch>0</horstretch>
|
2021-04-20 22:24:33 +08:00
|
|
|
<verstretch>0</verstretch>
|
2021-04-06 23:10:57 +08:00
|
|
|
</sizepolicy>
|
|
|
|
</property>
|
|
|
|
<property name="tabPosition">
|
|
|
|
<enum>QTabWidget::South</enum>
|
|
|
|
</property>
|
|
|
|
<property name="currentIndex">
|
2021-11-06 10:36:25 +08:00
|
|
|
<number>6</number>
|
2021-10-21 08:04:41 +08:00
|
|
|
</property>
|
|
|
|
<property name="iconSize">
|
|
|
|
<size>
|
|
|
|
<width>16</width>
|
|
|
|
<height>16</height>
|
|
|
|
</size>
|
2021-04-06 23:10:57 +08:00
|
|
|
</property>
|
2021-04-24 15:57:45 +08:00
|
|
|
<widget class="QWidget" name="tabIssues">
|
2021-06-23 22:38:02 +08:00
|
|
|
<attribute name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/013-compile.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</attribute>
|
2021-04-24 15:57:45 +08:00
|
|
|
<attribute name="title">
|
|
|
|
<string>Issues</string>
|
|
|
|
</attribute>
|
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
|
|
|
<property name="leftMargin">
|
|
|
|
<number>5</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>5</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>5</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>5</number>
|
|
|
|
</property>
|
|
|
|
<item>
|
|
|
|
<widget class="IssuesTable" name="tableIssues">
|
2021-05-27 01:05:49 +08:00
|
|
|
<property name="font">
|
|
|
|
<font>
|
|
|
|
<weight>50</weight>
|
|
|
|
<bold>false</bold>
|
|
|
|
</font>
|
|
|
|
</property>
|
2021-04-24 15:57:45 +08:00
|
|
|
<property name="editTriggers">
|
|
|
|
<set>QAbstractItemView::NoEditTriggers</set>
|
|
|
|
</property>
|
|
|
|
<property name="tabKeyNavigation">
|
|
|
|
<bool>false</bool>
|
|
|
|
</property>
|
|
|
|
<property name="showDropIndicator" stdset="0">
|
|
|
|
<bool>false</bool>
|
|
|
|
</property>
|
2021-10-18 22:06:33 +08:00
|
|
|
<property name="alternatingRowColors">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
2021-04-24 15:57:45 +08:00
|
|
|
<property name="selectionMode">
|
|
|
|
<enum>QAbstractItemView::SingleSelection</enum>
|
|
|
|
</property>
|
2021-04-29 20:54:44 +08:00
|
|
|
<property name="selectionBehavior">
|
|
|
|
<enum>QAbstractItemView::SelectRows</enum>
|
|
|
|
</property>
|
2021-09-03 10:30:08 +08:00
|
|
|
<attribute name="horizontalHeaderStretchLastSection">
|
|
|
|
<bool>true</bool>
|
|
|
|
</attribute>
|
2021-04-24 15:57:45 +08:00
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
2021-04-20 22:24:33 +08:00
|
|
|
<widget class="QWidget" name="tabCompilerOutput">
|
2021-06-23 22:38:02 +08:00
|
|
|
<attribute name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/015-compres.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</attribute>
|
2021-04-06 23:10:57 +08:00
|
|
|
<attribute name="title">
|
2021-04-24 15:57:45 +08:00
|
|
|
<string>Compile Log</string>
|
2021-04-06 23:10:57 +08:00
|
|
|
</attribute>
|
2021-04-20 22:24:33 +08:00
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
|
|
|
<property name="leftMargin">
|
|
|
|
<number>5</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>5</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>5</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>5</number>
|
|
|
|
</property>
|
|
|
|
<item>
|
|
|
|
<widget class="QPlainTextEdit" name="txtCompilerOutput">
|
|
|
|
<property name="undoRedoEnabled">
|
|
|
|
<bool>false</bool>
|
|
|
|
</property>
|
|
|
|
<property name="lineWrapMode">
|
|
|
|
<enum>QPlainTextEdit::NoWrap</enum>
|
|
|
|
</property>
|
|
|
|
<property name="readOnly">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="backgroundVisible">
|
|
|
|
<bool>false</bool>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
</layout>
|
2021-04-06 23:10:57 +08:00
|
|
|
</widget>
|
2021-06-23 22:38:02 +08:00
|
|
|
<widget class="QWidget" name="tabDebug">
|
|
|
|
<attribute name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/020-debug.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</attribute>
|
|
|
|
<attribute name="title">
|
|
|
|
<string>Debug</string>
|
|
|
|
</attribute>
|
2021-07-17 19:32:23 +08:00
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
2021-10-15 12:17:14 +08:00
|
|
|
<property name="spacing">
|
|
|
|
<number>7</number>
|
|
|
|
</property>
|
2021-07-17 19:32:23 +08:00
|
|
|
<property name="leftMargin">
|
2021-10-15 10:23:46 +08:00
|
|
|
<number>0</number>
|
2021-07-17 19:32:23 +08:00
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
2021-10-15 10:23:46 +08:00
|
|
|
<number>0</number>
|
2021-07-17 19:32:23 +08:00
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
2021-10-15 10:23:46 +08:00
|
|
|
<number>0</number>
|
2021-07-17 19:32:23 +08:00
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
2021-10-15 10:23:46 +08:00
|
|
|
<number>0</number>
|
2021-07-17 19:32:23 +08:00
|
|
|
</property>
|
|
|
|
<item>
|
|
|
|
<widget class="QSplitter" name="splitter">
|
|
|
|
<property name="orientation">
|
|
|
|
<enum>Qt::Horizontal</enum>
|
|
|
|
</property>
|
2021-10-15 12:17:14 +08:00
|
|
|
<property name="handleWidth">
|
|
|
|
<number>3</number>
|
|
|
|
</property>
|
2021-07-17 19:32:23 +08:00
|
|
|
<widget class="QFrame" name="frmEvaluate">
|
|
|
|
<property name="frameShape">
|
|
|
|
<enum>QFrame::StyledPanel</enum>
|
|
|
|
</property>
|
|
|
|
<property name="frameShadow">
|
|
|
|
<enum>QFrame::Raised</enum>
|
|
|
|
</property>
|
2021-09-29 22:55:53 +08:00
|
|
|
<layout class="QGridLayout" name="gridLayout_2">
|
2021-07-17 19:32:23 +08:00
|
|
|
<property name="leftMargin">
|
2021-09-29 22:55:53 +08:00
|
|
|
<number>11</number>
|
2021-07-17 19:32:23 +08:00
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
2021-09-29 22:55:53 +08:00
|
|
|
<number>11</number>
|
2021-07-17 19:32:23 +08:00
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
2021-09-29 22:55:53 +08:00
|
|
|
<number>11</number>
|
2021-07-17 19:32:23 +08:00
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
2021-09-29 22:55:53 +08:00
|
|
|
<number>11</number>
|
2021-07-17 19:32:23 +08:00
|
|
|
</property>
|
2021-09-29 22:55:53 +08:00
|
|
|
<item row="0" column="0">
|
|
|
|
<widget class="QLabel" name="lblEvaluate">
|
|
|
|
<property name="text">
|
|
|
|
<string>Evaluate:</string>
|
2021-07-17 19:32:23 +08:00
|
|
|
</property>
|
2021-09-29 22:55:53 +08:00
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item row="0" column="1">
|
|
|
|
<widget class="QComboBox" name="cbEvaluate">
|
|
|
|
<property name="sizePolicy">
|
|
|
|
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
|
|
|
|
<horstretch>0</horstretch>
|
|
|
|
<verstretch>0</verstretch>
|
|
|
|
</sizepolicy>
|
|
|
|
</property>
|
|
|
|
<property name="editable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="insertPolicy">
|
|
|
|
<enum>QComboBox::InsertAtTop</enum>
|
2021-07-17 19:32:23 +08:00
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
2021-09-29 22:55:53 +08:00
|
|
|
<item row="2" column="0" colspan="2">
|
2021-07-17 19:32:23 +08:00
|
|
|
<widget class="QPlainTextEdit" name="txtEvalOutput">
|
2021-09-19 14:28:30 +08:00
|
|
|
<property name="undoRedoEnabled">
|
|
|
|
<bool>false</bool>
|
|
|
|
</property>
|
2021-07-17 19:32:23 +08:00
|
|
|
<property name="readOnly">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
|
|
|
<widget class="QTabWidget" name="debugViews">
|
2021-08-01 23:24:37 +08:00
|
|
|
<property name="tabPosition">
|
|
|
|
<enum>QTabWidget::North</enum>
|
|
|
|
</property>
|
2021-07-17 19:32:23 +08:00
|
|
|
<property name="currentIndex">
|
2021-10-27 16:58:30 +08:00
|
|
|
<number>2</number>
|
2021-07-17 19:32:23 +08:00
|
|
|
</property>
|
|
|
|
<widget class="QWidget" name="tabDebugConsole">
|
|
|
|
<attribute name="title">
|
|
|
|
<string>Debug Console</string>
|
|
|
|
</attribute>
|
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout_6">
|
|
|
|
<property name="leftMargin">
|
|
|
|
<number>2</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>2</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>2</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>2</number>
|
|
|
|
</property>
|
|
|
|
<item>
|
2021-07-23 13:22:05 +08:00
|
|
|
<widget class="QConsole" name="debugConsole">
|
2021-07-17 19:32:23 +08:00
|
|
|
<property name="frameShape">
|
|
|
|
<enum>QFrame::StyledPanel</enum>
|
|
|
|
</property>
|
|
|
|
<property name="frameShadow">
|
|
|
|
<enum>QFrame::Raised</enum>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
|
|
|
<widget class="QWidget" name="tabStackTrace">
|
|
|
|
<attribute name="title">
|
|
|
|
<string>Call Stack</string>
|
|
|
|
</attribute>
|
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout_7">
|
|
|
|
<property name="leftMargin">
|
|
|
|
<number>2</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>2</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>2</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<item>
|
2021-08-01 23:24:37 +08:00
|
|
|
<widget class="QTableView" name="tblStackTrace">
|
2021-10-18 22:06:33 +08:00
|
|
|
<property name="alternatingRowColors">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
2021-09-05 22:16:54 +08:00
|
|
|
<property name="selectionMode">
|
|
|
|
<enum>QAbstractItemView::SingleSelection</enum>
|
|
|
|
</property>
|
|
|
|
<property name="selectionBehavior">
|
|
|
|
<enum>QAbstractItemView::SelectRows</enum>
|
|
|
|
</property>
|
2021-08-01 23:24:37 +08:00
|
|
|
<property name="textElideMode">
|
|
|
|
<enum>Qt::ElideNone</enum>
|
|
|
|
</property>
|
2021-09-03 10:30:08 +08:00
|
|
|
<attribute name="horizontalHeaderStretchLastSection">
|
|
|
|
<bool>true</bool>
|
|
|
|
</attribute>
|
2021-08-01 23:24:37 +08:00
|
|
|
</widget>
|
2021-07-17 19:32:23 +08:00
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
|
|
|
<widget class="QWidget" name="tabBreakpoints">
|
|
|
|
<attribute name="title">
|
|
|
|
<string>Breakpoints</string>
|
|
|
|
</attribute>
|
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout_8">
|
|
|
|
<property name="leftMargin">
|
|
|
|
<number>2</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>2</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>2</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<item>
|
2021-08-01 23:24:37 +08:00
|
|
|
<widget class="QTableView" name="tblBreakpoints">
|
2021-10-18 22:06:33 +08:00
|
|
|
<property name="alternatingRowColors">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
2021-09-05 22:16:54 +08:00
|
|
|
<property name="selectionMode">
|
|
|
|
<enum>QAbstractItemView::SingleSelection</enum>
|
|
|
|
</property>
|
|
|
|
<property name="selectionBehavior">
|
|
|
|
<enum>QAbstractItemView::SelectRows</enum>
|
|
|
|
</property>
|
2021-08-01 23:24:37 +08:00
|
|
|
<property name="textElideMode">
|
|
|
|
<enum>Qt::ElideNone</enum>
|
|
|
|
</property>
|
2021-09-03 10:30:08 +08:00
|
|
|
<attribute name="horizontalHeaderStretchLastSection">
|
|
|
|
<bool>true</bool>
|
|
|
|
</attribute>
|
2021-08-01 23:24:37 +08:00
|
|
|
</widget>
|
2021-07-17 19:32:23 +08:00
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
|
|
|
<widget class="QWidget" name="tabLocals">
|
|
|
|
<attribute name="title">
|
|
|
|
<string>Locals</string>
|
|
|
|
</attribute>
|
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout_9">
|
|
|
|
<property name="leftMargin">
|
|
|
|
<number>2</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>2</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>2</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<item>
|
2021-09-19 14:28:30 +08:00
|
|
|
<widget class="QPlainTextEdit" name="txtLocals">
|
|
|
|
<property name="undoRedoEnabled">
|
|
|
|
<bool>false</bool>
|
|
|
|
</property>
|
|
|
|
<property name="readOnly">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
</widget>
|
2021-07-17 19:32:23 +08:00
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
2021-09-29 22:55:53 +08:00
|
|
|
<widget class="QWidget" name="tabMemory">
|
|
|
|
<attribute name="title">
|
|
|
|
<string>Memory</string>
|
|
|
|
</attribute>
|
|
|
|
<layout class="QGridLayout" name="gridLayout">
|
|
|
|
<item row="0" column="0">
|
|
|
|
<widget class="QLabel" name="label_3">
|
|
|
|
<property name="text">
|
|
|
|
<string>Address Expression:</string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item row="0" column="1">
|
|
|
|
<widget class="QComboBox" name="cbMemoryAddress">
|
|
|
|
<property name="sizePolicy">
|
|
|
|
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
|
|
|
|
<horstretch>0</horstretch>
|
|
|
|
<verstretch>0</verstretch>
|
|
|
|
</sizepolicy>
|
|
|
|
</property>
|
|
|
|
<property name="editable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="insertPolicy">
|
|
|
|
<enum>QComboBox::InsertAtTop</enum>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item row="1" column="0" colspan="2">
|
|
|
|
<widget class="QPlainTextEdit" name="txtMemoryView">
|
|
|
|
<property name="lineWrapMode">
|
|
|
|
<enum>QPlainTextEdit::NoWrap</enum>
|
|
|
|
</property>
|
|
|
|
<property name="readOnly">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
2021-07-17 19:32:23 +08:00
|
|
|
</widget>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
</layout>
|
2021-06-23 22:38:02 +08:00
|
|
|
</widget>
|
|
|
|
<widget class="QWidget" name="tabSearch">
|
|
|
|
<attribute name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/074-search.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</attribute>
|
|
|
|
<attribute name="title">
|
|
|
|
<string>Search</string>
|
|
|
|
</attribute>
|
2021-08-03 23:55:57 +08:00
|
|
|
<layout class="QVBoxLayout" name="verticalLayout_4">
|
|
|
|
<item>
|
|
|
|
<widget class="QWidget" name="searchHistoryPanel" native="true">
|
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout_11">
|
|
|
|
<property name="leftMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<item>
|
|
|
|
<widget class="QLabel" name="label">
|
|
|
|
<property name="sizePolicy">
|
|
|
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
|
|
<horstretch>0</horstretch>
|
|
|
|
<verstretch>0</verstretch>
|
|
|
|
</sizepolicy>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>History:</string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
2021-08-05 12:31:53 +08:00
|
|
|
<widget class="QComboBox" name="cbSearchHistory">
|
2021-08-03 23:55:57 +08:00
|
|
|
<property name="sizePolicy">
|
|
|
|
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
|
|
<horstretch>0</horstretch>
|
|
|
|
<verstretch>0</verstretch>
|
|
|
|
</sizepolicy>
|
|
|
|
</property>
|
|
|
|
<property name="minimumSize">
|
|
|
|
<size>
|
|
|
|
<width>150</width>
|
|
|
|
<height>0</height>
|
|
|
|
</size>
|
|
|
|
</property>
|
2021-09-19 14:28:30 +08:00
|
|
|
<property name="sizeAdjustPolicy">
|
|
|
|
<enum>QComboBox::AdjustToContents</enum>
|
|
|
|
</property>
|
2021-08-03 23:55:57 +08:00
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
2021-11-05 10:44:23 +08:00
|
|
|
<widget class="QPushButton" name="btnSearchAgain">
|
2021-08-05 19:58:32 +08:00
|
|
|
<property name="enabled">
|
|
|
|
<bool>false</bool>
|
|
|
|
</property>
|
2021-08-03 23:55:57 +08:00
|
|
|
<property name="sizePolicy">
|
|
|
|
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
|
|
<horstretch>0</horstretch>
|
|
|
|
<verstretch>0</verstretch>
|
|
|
|
</sizepolicy>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Search Again</string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<spacer name="horizontalSpacer">
|
|
|
|
<property name="orientation">
|
|
|
|
<enum>Qt::Horizontal</enum>
|
|
|
|
</property>
|
|
|
|
<property name="sizeHint" stdset="0">
|
|
|
|
<size>
|
|
|
|
<width>40</width>
|
|
|
|
<height>20</height>
|
|
|
|
</size>
|
|
|
|
</property>
|
|
|
|
</spacer>
|
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<widget class="QWidget" name="replacePanel" native="true">
|
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout_12">
|
|
|
|
<property name="leftMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<item>
|
|
|
|
<widget class="QLabel" name="label_2">
|
|
|
|
<property name="text">
|
|
|
|
<string>Replace with:</string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
2021-08-05 12:31:53 +08:00
|
|
|
<widget class="QComboBox" name="cbReplaceInHistory">
|
2021-08-03 23:55:57 +08:00
|
|
|
<property name="minimumSize">
|
|
|
|
<size>
|
|
|
|
<width>150</width>
|
|
|
|
<height>0</height>
|
|
|
|
</size>
|
|
|
|
</property>
|
|
|
|
<property name="editable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="insertPolicy">
|
|
|
|
<enum>QComboBox::InsertAtTop</enum>
|
|
|
|
</property>
|
2021-09-19 14:28:30 +08:00
|
|
|
<property name="sizeAdjustPolicy">
|
|
|
|
<enum>QComboBox::AdjustToContents</enum>
|
|
|
|
</property>
|
2021-08-03 23:55:57 +08:00
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
2021-08-05 19:58:32 +08:00
|
|
|
<widget class="QPushButton" name="btnReplace">
|
2021-08-03 23:55:57 +08:00
|
|
|
<property name="text">
|
|
|
|
<string>Replace</string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
2021-10-04 19:23:52 +08:00
|
|
|
<item>
|
|
|
|
<widget class="QPushButton" name="btnCancelReplace">
|
|
|
|
<property name="text">
|
|
|
|
<string>Cancel</string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
2021-08-03 23:55:57 +08:00
|
|
|
<item>
|
|
|
|
<spacer name="horizontalSpacer_2">
|
|
|
|
<property name="orientation">
|
|
|
|
<enum>Qt::Horizontal</enum>
|
|
|
|
</property>
|
|
|
|
<property name="sizeHint" stdset="0">
|
|
|
|
<size>
|
|
|
|
<width>40</width>
|
|
|
|
<height>20</height>
|
|
|
|
</size>
|
|
|
|
</property>
|
|
|
|
</spacer>
|
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
2021-08-05 12:31:53 +08:00
|
|
|
<widget class="QTreeView" name="searchView">
|
|
|
|
<attribute name="headerVisible">
|
|
|
|
<bool>false</bool>
|
|
|
|
</attribute>
|
|
|
|
</widget>
|
2021-08-03 23:55:57 +08:00
|
|
|
</item>
|
|
|
|
</layout>
|
2021-06-23 22:38:02 +08:00
|
|
|
</widget>
|
2021-10-03 17:18:43 +08:00
|
|
|
<widget class="QWidget" name="tabTODO">
|
2021-10-03 23:12:20 +08:00
|
|
|
<attribute name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
2021-10-21 08:04:41 +08:00
|
|
|
<normaloff>:/icons/images/newlook24/047-makefl.png</normaloff>:/icons/images/newlook24/047-makefl.png</iconset>
|
2021-10-03 23:12:20 +08:00
|
|
|
</attribute>
|
2021-10-03 14:06:32 +08:00
|
|
|
<attribute name="title">
|
|
|
|
<string>TODO</string>
|
|
|
|
</attribute>
|
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
|
|
|
<item>
|
2021-10-03 17:18:43 +08:00
|
|
|
<widget class="QTableView" name="tableTODO">
|
|
|
|
<attribute name="horizontalHeaderStretchLastSection">
|
|
|
|
<bool>true</bool>
|
|
|
|
</attribute>
|
|
|
|
</widget>
|
2021-10-03 14:06:32 +08:00
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
2021-10-21 17:31:25 +08:00
|
|
|
<widget class="QWidget" name="tabBookmark">
|
|
|
|
<attribute name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/039-gobook.png</normaloff>:/icons/images/newlook24/039-gobook.png</iconset>
|
|
|
|
</attribute>
|
|
|
|
<attribute name="title">
|
|
|
|
<string>Bookmark</string>
|
|
|
|
</attribute>
|
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout_14">
|
|
|
|
<item>
|
|
|
|
<widget class="QTableView" name="tableBookmark">
|
|
|
|
<property name="alternatingRowColors">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="selectionMode">
|
|
|
|
<enum>QAbstractItemView::SingleSelection</enum>
|
|
|
|
</property>
|
|
|
|
<property name="selectionBehavior">
|
|
|
|
<enum>QAbstractItemView::SelectRows</enum>
|
|
|
|
</property>
|
|
|
|
<attribute name="horizontalHeaderStretchLastSection">
|
|
|
|
<bool>true</bool>
|
|
|
|
</attribute>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
2021-10-31 17:01:34 +08:00
|
|
|
<widget class="QWidget" name="tabProblem">
|
2021-11-06 10:36:25 +08:00
|
|
|
<attribute name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/015-compres.png</normaloff>:/icons/images/newlook24/015-compres.png</iconset>
|
|
|
|
</attribute>
|
2021-10-31 17:01:34 +08:00
|
|
|
<attribute name="title">
|
|
|
|
<string>Problem</string>
|
|
|
|
</attribute>
|
|
|
|
<layout class="QVBoxLayout" name="verticalLayout_8">
|
|
|
|
<property name="leftMargin">
|
|
|
|
<number>11</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>11</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>11</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>11</number>
|
|
|
|
</property>
|
|
|
|
<item>
|
|
|
|
<widget class="QSplitter" name="splitter_2">
|
|
|
|
<property name="orientation">
|
|
|
|
<enum>Qt::Horizontal</enum>
|
|
|
|
</property>
|
|
|
|
<widget class="QWidget" name="widget_4" native="true">
|
|
|
|
<layout class="QVBoxLayout" name="verticalLayout_7">
|
2021-11-06 10:36:25 +08:00
|
|
|
<property name="spacing">
|
|
|
|
<number>3</number>
|
|
|
|
</property>
|
2021-10-31 17:01:34 +08:00
|
|
|
<property name="leftMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<item>
|
2021-11-01 00:40:11 +08:00
|
|
|
<widget class="QLabel" name="lblProblem">
|
2021-11-06 10:36:25 +08:00
|
|
|
<property name="frameShape">
|
|
|
|
<enum>QFrame::Box</enum>
|
|
|
|
</property>
|
2021-10-31 17:01:34 +08:00
|
|
|
<property name="text">
|
|
|
|
<string>Problem</string>
|
|
|
|
</property>
|
2021-11-06 10:36:25 +08:00
|
|
|
<property name="margin">
|
|
|
|
<number>5</number>
|
|
|
|
</property>
|
2021-11-02 09:29:35 +08:00
|
|
|
<property name="openExternalLinks">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
2021-10-31 17:01:34 +08:00
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<widget class="QWidget" name="widget_3" native="true">
|
|
|
|
<property name="minimumSize">
|
|
|
|
<size>
|
|
|
|
<width>0</width>
|
|
|
|
<height>0</height>
|
|
|
|
</size>
|
|
|
|
</property>
|
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout_16">
|
|
|
|
<property name="leftMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<widget class="QWidget" name="widget_6" native="true">
|
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout_17">
|
|
|
|
<property name="leftMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<item>
|
|
|
|
<widget class="QToolButton" name="btnAddProblemCase">
|
2021-11-01 00:40:11 +08:00
|
|
|
<property name="toolTip">
|
|
|
|
<string>Add Probem Case</string>
|
|
|
|
</property>
|
2021-10-31 17:01:34 +08:00
|
|
|
<property name="text">
|
2021-11-01 00:40:11 +08:00
|
|
|
<string>Add Probem Case</string>
|
2021-10-31 17:01:34 +08:00
|
|
|
</property>
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/002-add.png</normaloff>:/icons/images/newlook24/002-add.png</iconset>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<widget class="QToolButton" name="btnRemoveProblemCase">
|
2021-11-01 00:40:11 +08:00
|
|
|
<property name="toolTip">
|
|
|
|
<string>Remove Problem Case</string>
|
|
|
|
</property>
|
2021-10-31 17:01:34 +08:00
|
|
|
<property name="text">
|
2021-11-01 00:40:11 +08:00
|
|
|
<string>Remove Problem Case</string>
|
2021-10-31 17:01:34 +08:00
|
|
|
</property>
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/008-close.png</normaloff>:/icons/images/newlook24/008-close.png</iconset>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
2021-11-06 14:49:11 +08:00
|
|
|
<item>
|
|
|
|
<widget class="QToolButton" name="btnOpenProblemAnswer">
|
|
|
|
<property name="toolTip">
|
|
|
|
<string>Open Anwser Source File</string>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Open Anwser Source File</string>
|
|
|
|
</property>
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
2021-11-07 10:48:09 +08:00
|
|
|
<normaloff>:/icons/images/newlook24/091-openproblemanswer.png</normaloff>:/icons/images/newlook24/091-openproblemanswer.png</iconset>
|
2021-11-06 14:49:11 +08:00
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
2021-11-01 00:40:11 +08:00
|
|
|
<item>
|
|
|
|
<widget class="Line" name="line">
|
|
|
|
<property name="orientation">
|
|
|
|
<enum>Qt::Vertical</enum>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<widget class="QToolButton" name="btnRunAllProblemCases">
|
|
|
|
<property name="toolTip">
|
|
|
|
<string>Run All Cases</string>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Run All Cases</string>
|
|
|
|
</property>
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
2021-11-07 10:48:09 +08:00
|
|
|
<normaloff>:/icons/images/newlook24/092-runallproblemcases.png</normaloff>:/icons/images/newlook24/092-runallproblemcases.png</iconset>
|
2021-11-01 09:18:23 +08:00
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
2021-10-31 17:01:34 +08:00
|
|
|
<item>
|
|
|
|
<spacer name="horizontalSpacer_4">
|
|
|
|
<property name="orientation">
|
|
|
|
<enum>Qt::Horizontal</enum>
|
|
|
|
</property>
|
|
|
|
<property name="sizeHint" stdset="0">
|
|
|
|
<size>
|
|
|
|
<width>40</width>
|
|
|
|
<height>20</height>
|
|
|
|
</size>
|
|
|
|
</property>
|
|
|
|
</spacer>
|
|
|
|
</item>
|
2021-11-01 20:44:08 +08:00
|
|
|
<item>
|
|
|
|
<widget class="QProgressBar" name="pbProblemCases">
|
2021-11-02 01:07:37 +08:00
|
|
|
<property name="sizePolicy">
|
|
|
|
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
|
|
<horstretch>0</horstretch>
|
|
|
|
<verstretch>0</verstretch>
|
|
|
|
</sizepolicy>
|
|
|
|
</property>
|
|
|
|
<property name="maximum">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
2021-11-01 20:44:08 +08:00
|
|
|
<property name="value">
|
2021-11-02 01:07:37 +08:00
|
|
|
<number>0</number>
|
2021-11-01 20:44:08 +08:00
|
|
|
</property>
|
|
|
|
<property name="format">
|
|
|
|
<string>%v/%m</string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
2021-10-31 17:01:34 +08:00
|
|
|
</layout>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item>
|
2021-11-01 09:18:23 +08:00
|
|
|
<widget class="QListView" name="lstProblemCases">
|
|
|
|
<property name="alternatingRowColors">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="selectionBehavior">
|
|
|
|
<enum>QAbstractItemView::SelectRows</enum>
|
|
|
|
</property>
|
|
|
|
</widget>
|
2021-10-31 17:01:34 +08:00
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
|
|
|
<widget class="QWidget" name="widget_5" native="true">
|
|
|
|
<layout class="QGridLayout" name="gridLayout_3">
|
|
|
|
<property name="leftMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="topMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="rightMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="bottomMargin">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<item row="0" column="1">
|
|
|
|
<widget class="QLabel" name="label_6">
|
|
|
|
<property name="text">
|
|
|
|
<string>Output</string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item row="0" column="0">
|
|
|
|
<widget class="QLabel" name="label_5">
|
|
|
|
<property name="text">
|
|
|
|
<string>Input</string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item row="0" column="2">
|
|
|
|
<widget class="QLabel" name="label_7">
|
|
|
|
<property name="text">
|
|
|
|
<string>Expected</string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
<item row="1" column="0">
|
2021-11-06 10:36:25 +08:00
|
|
|
<widget class="QTextEdit" name="txtProblemCaseInput">
|
|
|
|
<property name="lineWrapMode">
|
|
|
|
<enum>QTextEdit::NoWrap</enum>
|
|
|
|
</property>
|
|
|
|
</widget>
|
2021-10-31 17:01:34 +08:00
|
|
|
</item>
|
|
|
|
<item row="1" column="1">
|
2021-11-02 19:26:11 +08:00
|
|
|
<widget class="QTextEdit" name="txtProblemCaseOutput">
|
2021-11-06 10:36:25 +08:00
|
|
|
<property name="lineWrapMode">
|
|
|
|
<enum>QTextEdit::NoWrap</enum>
|
|
|
|
</property>
|
2021-11-02 19:26:11 +08:00
|
|
|
<property name="readOnly">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
</widget>
|
2021-10-31 17:01:34 +08:00
|
|
|
</item>
|
|
|
|
<item row="1" column="2">
|
2021-11-06 10:36:25 +08:00
|
|
|
<widget class="QTextEdit" name="txtProblemCaseExpected">
|
|
|
|
<property name="lineWrapMode">
|
|
|
|
<enum>QTextEdit::NoWrap</enum>
|
|
|
|
</property>
|
|
|
|
</widget>
|
2021-10-31 17:01:34 +08:00
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
2021-04-06 23:10:57 +08:00
|
|
|
</widget>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
|
|
|
<widget class="QMenuBar" name="menubar">
|
|
|
|
<property name="geometry">
|
|
|
|
<rect>
|
|
|
|
<x>0</x>
|
|
|
|
<y>0</y>
|
2021-11-01 20:44:08 +08:00
|
|
|
<width>1114</width>
|
2021-10-27 16:58:30 +08:00
|
|
|
<height>25</height>
|
2021-04-06 23:10:57 +08:00
|
|
|
</rect>
|
|
|
|
</property>
|
2021-04-07 21:13:15 +08:00
|
|
|
<widget class="QMenu" name="menuFile">
|
|
|
|
<property name="title">
|
|
|
|
<string>File</string>
|
|
|
|
</property>
|
|
|
|
<addaction name="actionOpen"/>
|
2021-10-22 15:02:54 +08:00
|
|
|
<addaction name="actionOpen_Folder"/>
|
2021-04-08 10:29:21 +08:00
|
|
|
<addaction name="separator"/>
|
|
|
|
<addaction name="actionSave"/>
|
|
|
|
<addaction name="actionSaveAs"/>
|
2021-04-16 22:04:48 +08:00
|
|
|
<addaction name="actionSaveAll"/>
|
2021-08-02 10:08:25 +08:00
|
|
|
<addaction name="separator"/>
|
2021-09-02 19:36:16 +08:00
|
|
|
<addaction name="actionClose"/>
|
2021-09-12 01:01:34 +08:00
|
|
|
<addaction name="actionClose_Project"/>
|
2021-09-02 19:36:16 +08:00
|
|
|
<addaction name="actionClose_All"/>
|
|
|
|
<addaction name="separator"/>
|
2021-10-07 07:52:20 +08:00
|
|
|
<addaction name="actionPrint"/>
|
|
|
|
<addaction name="separator"/>
|
2021-08-02 10:08:25 +08:00
|
|
|
<addaction name="actionExit"/>
|
2021-04-16 22:04:48 +08:00
|
|
|
</widget>
|
|
|
|
<widget class="QMenu" name="menuTools">
|
|
|
|
<property name="title">
|
|
|
|
<string>Tools</string>
|
|
|
|
</property>
|
|
|
|
<addaction name="actionOptions"/>
|
2021-04-07 21:13:15 +08:00
|
|
|
</widget>
|
2021-08-02 10:08:25 +08:00
|
|
|
<widget class="QMenu" name="menuExecute">
|
2021-04-20 22:24:33 +08:00
|
|
|
<property name="title">
|
2021-08-02 10:08:25 +08:00
|
|
|
<string>Execute</string>
|
2021-04-20 22:24:33 +08:00
|
|
|
</property>
|
|
|
|
<addaction name="actionCompile"/>
|
2021-04-21 18:58:35 +08:00
|
|
|
<addaction name="actionRun"/>
|
2021-06-25 12:40:11 +08:00
|
|
|
<addaction name="actionCompile_Run"/>
|
|
|
|
<addaction name="actionRebuild"/>
|
|
|
|
<addaction name="separator"/>
|
2021-10-24 17:31:20 +08:00
|
|
|
<addaction name="actionRun_Parameters"/>
|
|
|
|
<addaction name="separator"/>
|
2021-07-31 14:04:43 +08:00
|
|
|
<addaction name="actionDebug"/>
|
|
|
|
<addaction name="actionStep_Over"/>
|
|
|
|
<addaction name="actionStep_Into"/>
|
|
|
|
<addaction name="actionRun_To_Cursor"/>
|
|
|
|
<addaction name="actionContinue"/>
|
2021-06-25 12:40:11 +08:00
|
|
|
<addaction name="actionStop_Execution"/>
|
2021-08-01 23:24:37 +08:00
|
|
|
<addaction name="separator"/>
|
2021-08-01 01:06:43 +08:00
|
|
|
<addaction name="actionAdd_Watch"/>
|
2021-08-01 23:24:37 +08:00
|
|
|
<addaction name="actionView_CPU_Window"/>
|
2021-04-20 22:24:33 +08:00
|
|
|
</widget>
|
2021-04-21 23:06:55 +08:00
|
|
|
<widget class="QMenu" name="menuEdit">
|
|
|
|
<property name="title">
|
|
|
|
<string>Edit</string>
|
|
|
|
</property>
|
|
|
|
<addaction name="actionUndo"/>
|
|
|
|
<addaction name="actionRedo"/>
|
|
|
|
<addaction name="separator"/>
|
|
|
|
<addaction name="actionCut"/>
|
|
|
|
<addaction name="actionCopy"/>
|
|
|
|
<addaction name="actionPaste"/>
|
|
|
|
<addaction name="actionSelectAll"/>
|
|
|
|
<addaction name="separator"/>
|
|
|
|
<addaction name="actionIndent"/>
|
|
|
|
<addaction name="actionUnIndent"/>
|
2021-04-24 15:57:45 +08:00
|
|
|
<addaction name="separator"/>
|
|
|
|
<addaction name="actionToggleComment"/>
|
|
|
|
<addaction name="separator"/>
|
|
|
|
<addaction name="actionFoldAll"/>
|
|
|
|
<addaction name="actionUnfoldAll"/>
|
2021-04-21 23:06:55 +08:00
|
|
|
</widget>
|
2021-08-03 23:55:57 +08:00
|
|
|
<widget class="QMenu" name="menuSearch">
|
|
|
|
<property name="title">
|
|
|
|
<string>Search</string>
|
|
|
|
</property>
|
|
|
|
<addaction name="actionFind"/>
|
|
|
|
<addaction name="actionFind_in_files"/>
|
|
|
|
<addaction name="actionReplace"/>
|
|
|
|
<addaction name="separator"/>
|
|
|
|
<addaction name="actionFind_Next"/>
|
|
|
|
<addaction name="actionFind_Previous"/>
|
|
|
|
</widget>
|
2021-09-02 12:14:02 +08:00
|
|
|
<widget class="QMenu" name="menuCode">
|
|
|
|
<property name="title">
|
|
|
|
<string>Code</string>
|
|
|
|
</property>
|
|
|
|
<addaction name="separator"/>
|
|
|
|
<addaction name="actionBack"/>
|
|
|
|
<addaction name="actionForward"/>
|
|
|
|
<addaction name="separator"/>
|
|
|
|
<addaction name="separator"/>
|
2021-10-21 17:31:25 +08:00
|
|
|
<addaction name="actionAdd_bookmark"/>
|
|
|
|
<addaction name="actionRemove_Bookmark"/>
|
|
|
|
<addaction name="actionModify_Bookmark_Description"/>
|
|
|
|
<addaction name="separator"/>
|
2021-09-02 12:14:02 +08:00
|
|
|
<addaction name="actionReformat_Code"/>
|
|
|
|
</widget>
|
2021-09-02 19:36:16 +08:00
|
|
|
<widget class="QMenu" name="menuWindow">
|
|
|
|
<property name="title">
|
|
|
|
<string>Window</string>
|
|
|
|
</property>
|
2021-09-02 20:12:16 +08:00
|
|
|
<addaction name="actionClose_All"/>
|
|
|
|
<addaction name="actionMaximize_Editor"/>
|
2021-09-03 00:26:49 +08:00
|
|
|
<addaction name="separator"/>
|
|
|
|
<addaction name="actionNext_Editor"/>
|
|
|
|
<addaction name="actionPrevious_Editor"/>
|
2021-09-02 19:36:16 +08:00
|
|
|
</widget>
|
2021-09-14 17:33:47 +08:00
|
|
|
<widget class="QMenu" name="menuProject">
|
|
|
|
<property name="title">
|
|
|
|
<string>Project</string>
|
|
|
|
</property>
|
2021-09-17 13:35:50 +08:00
|
|
|
<addaction name="actionProject_New_File"/>
|
2021-09-17 09:56:52 +08:00
|
|
|
<addaction name="actionAdd_to_project"/>
|
|
|
|
<addaction name="actionRemove_from_project"/>
|
|
|
|
<addaction name="separator"/>
|
2021-09-18 10:47:35 +08:00
|
|
|
<addaction name="actionProject_Open_Folder_In_Explorer"/>
|
|
|
|
<addaction name="actionProject_Open_In_Terminal"/>
|
|
|
|
<addaction name="separator"/>
|
|
|
|
<addaction name="separator"/>
|
2021-09-17 09:56:52 +08:00
|
|
|
<addaction name="actionView_Makefile"/>
|
|
|
|
<addaction name="actionMakeClean"/>
|
|
|
|
<addaction name="separator"/>
|
2021-09-14 17:33:47 +08:00
|
|
|
<addaction name="actionProject_options"/>
|
|
|
|
</widget>
|
2021-10-03 23:12:20 +08:00
|
|
|
<widget class="QMenu" name="menuHelp">
|
|
|
|
<property name="title">
|
|
|
|
<string>Help</string>
|
|
|
|
</property>
|
2021-11-02 23:47:51 +08:00
|
|
|
<addaction name="actionC_Reference"/>
|
2021-10-15 12:17:14 +08:00
|
|
|
<addaction name="actionC_C_Reference"/>
|
2021-10-18 23:44:02 +08:00
|
|
|
<addaction name="actionEGE_Manual"/>
|
2021-10-03 23:12:20 +08:00
|
|
|
<addaction name="actionAbout"/>
|
|
|
|
</widget>
|
2021-10-04 11:07:35 +08:00
|
|
|
<widget class="QMenu" name="menuRefactor">
|
|
|
|
<property name="title">
|
|
|
|
<string>Refactor</string>
|
|
|
|
</property>
|
|
|
|
<addaction name="actionRename_Symbol"/>
|
|
|
|
</widget>
|
2021-11-09 12:31:37 +08:00
|
|
|
<widget class="QMenu" name="menuView">
|
|
|
|
<property name="title">
|
|
|
|
<string>View</string>
|
|
|
|
</property>
|
|
|
|
<widget class="QMenu" name="menuTool_Windows">
|
|
|
|
<property name="title">
|
|
|
|
<string>Tool Windows</string>
|
|
|
|
</property>
|
|
|
|
<addaction name="actionProject"/>
|
|
|
|
<addaction name="actionWatch"/>
|
|
|
|
<addaction name="actionStructure"/>
|
|
|
|
<addaction name="actionFiles"/>
|
|
|
|
<addaction name="actionProblem_Set"/>
|
|
|
|
<addaction name="separator"/>
|
|
|
|
<addaction name="actionIssues"/>
|
|
|
|
<addaction name="actionCompile_Log"/>
|
|
|
|
<addaction name="actionDebug_Window"/>
|
|
|
|
<addaction name="actionSearch"/>
|
|
|
|
<addaction name="actionTODO"/>
|
|
|
|
<addaction name="actionBookmark"/>
|
|
|
|
<addaction name="actionProblem"/>
|
|
|
|
</widget>
|
|
|
|
<addaction name="actionTool_Window_Bars"/>
|
|
|
|
<addaction name="menuTool_Windows"/>
|
|
|
|
<addaction name="actionStatus_Bar"/>
|
|
|
|
</widget>
|
2021-04-07 21:13:15 +08:00
|
|
|
<addaction name="menuFile"/>
|
2021-04-21 23:06:55 +08:00
|
|
|
<addaction name="menuEdit"/>
|
2021-11-09 12:31:37 +08:00
|
|
|
<addaction name="menuView"/>
|
2021-08-03 23:55:57 +08:00
|
|
|
<addaction name="menuSearch"/>
|
2021-09-02 12:14:02 +08:00
|
|
|
<addaction name="menuCode"/>
|
2021-10-04 11:07:35 +08:00
|
|
|
<addaction name="menuRefactor"/>
|
2021-09-14 17:33:47 +08:00
|
|
|
<addaction name="menuProject"/>
|
2021-08-02 10:08:25 +08:00
|
|
|
<addaction name="menuExecute"/>
|
2021-04-16 22:04:48 +08:00
|
|
|
<addaction name="menuTools"/>
|
2021-09-02 19:36:16 +08:00
|
|
|
<addaction name="menuWindow"/>
|
2021-10-03 23:12:20 +08:00
|
|
|
<addaction name="menuHelp"/>
|
2021-04-06 23:10:57 +08:00
|
|
|
</widget>
|
|
|
|
<widget class="QStatusBar" name="statusbar"/>
|
2021-04-18 11:41:41 +08:00
|
|
|
<widget class="QToolBar" name="toolbarMain">
|
2021-04-07 21:13:15 +08:00
|
|
|
<property name="windowTitle">
|
2021-09-25 21:34:10 +08:00
|
|
|
<string>Main</string>
|
2021-04-07 21:13:15 +08:00
|
|
|
</property>
|
2021-08-01 01:06:43 +08:00
|
|
|
<property name="iconSize">
|
|
|
|
<size>
|
|
|
|
<width>24</width>
|
|
|
|
<height>24</height>
|
|
|
|
</size>
|
|
|
|
</property>
|
2021-04-07 21:13:15 +08:00
|
|
|
<attribute name="toolBarArea">
|
|
|
|
<enum>TopToolBarArea</enum>
|
|
|
|
</attribute>
|
|
|
|
<attribute name="toolBarBreak">
|
|
|
|
<bool>false</bool>
|
|
|
|
</attribute>
|
|
|
|
<addaction name="actionNew"/>
|
|
|
|
<addaction name="actionOpen"/>
|
2021-04-08 10:29:21 +08:00
|
|
|
<addaction name="actionSave"/>
|
2021-04-16 22:04:48 +08:00
|
|
|
<addaction name="actionSaveAll"/>
|
2021-04-07 21:13:15 +08:00
|
|
|
</widget>
|
2021-09-11 09:21:44 +08:00
|
|
|
<widget class="QToolBar" name="toolbarCode">
|
2021-04-13 22:17:18 +08:00
|
|
|
<property name="windowTitle">
|
2021-09-25 21:34:10 +08:00
|
|
|
<string>Code</string>
|
2021-08-01 01:06:43 +08:00
|
|
|
</property>
|
2021-04-13 22:17:18 +08:00
|
|
|
<attribute name="toolBarArea">
|
|
|
|
<enum>TopToolBarArea</enum>
|
|
|
|
</attribute>
|
|
|
|
<attribute name="toolBarBreak">
|
|
|
|
<bool>false</bool>
|
|
|
|
</attribute>
|
2021-09-11 09:21:44 +08:00
|
|
|
<addaction name="actionBack"/>
|
|
|
|
<addaction name="actionForward"/>
|
|
|
|
<addaction name="separator"/>
|
|
|
|
<addaction name="actionReformat_Code"/>
|
2021-04-13 22:17:18 +08:00
|
|
|
</widget>
|
2021-09-02 16:35:28 +08:00
|
|
|
<widget class="QToolBar" name="toolbarCompile">
|
2021-04-20 22:24:33 +08:00
|
|
|
<property name="windowTitle">
|
2021-09-25 21:34:10 +08:00
|
|
|
<string>Compile</string>
|
2021-04-20 22:24:33 +08:00
|
|
|
</property>
|
2021-08-01 01:06:43 +08:00
|
|
|
<property name="iconSize">
|
|
|
|
<size>
|
|
|
|
<width>24</width>
|
|
|
|
<height>24</height>
|
|
|
|
</size>
|
|
|
|
</property>
|
2021-04-20 22:24:33 +08:00
|
|
|
<attribute name="toolBarArea">
|
|
|
|
<enum>TopToolBarArea</enum>
|
|
|
|
</attribute>
|
|
|
|
<attribute name="toolBarBreak">
|
|
|
|
<bool>false</bool>
|
|
|
|
</attribute>
|
|
|
|
<addaction name="actionCompile"/>
|
2021-04-21 18:58:35 +08:00
|
|
|
<addaction name="actionRun"/>
|
2021-06-25 12:40:11 +08:00
|
|
|
<addaction name="actionCompile_Run"/>
|
|
|
|
<addaction name="actionRebuild"/>
|
2021-10-31 10:11:30 +08:00
|
|
|
<addaction name="separator"/>
|
|
|
|
<addaction name="actionRun_Parameters"/>
|
2021-06-25 12:40:11 +08:00
|
|
|
</widget>
|
2021-09-02 16:35:28 +08:00
|
|
|
<widget class="QToolBar" name="toolbarDebug">
|
2021-06-25 12:40:11 +08:00
|
|
|
<property name="windowTitle">
|
2021-09-25 21:34:10 +08:00
|
|
|
<string>Debug</string>
|
2021-06-25 12:40:11 +08:00
|
|
|
</property>
|
2021-08-01 01:06:43 +08:00
|
|
|
<property name="iconSize">
|
|
|
|
<size>
|
|
|
|
<width>24</width>
|
|
|
|
<height>24</height>
|
|
|
|
</size>
|
|
|
|
</property>
|
2021-06-25 12:40:11 +08:00
|
|
|
<attribute name="toolBarArea">
|
|
|
|
<enum>TopToolBarArea</enum>
|
|
|
|
</attribute>
|
|
|
|
<attribute name="toolBarBreak">
|
|
|
|
<bool>false</bool>
|
|
|
|
</attribute>
|
2021-07-20 15:16:52 +08:00
|
|
|
<addaction name="actionDebug"/>
|
2021-07-31 14:04:43 +08:00
|
|
|
<addaction name="actionStep_Over"/>
|
|
|
|
<addaction name="actionStep_Into"/>
|
|
|
|
<addaction name="actionStep_Out"/>
|
|
|
|
<addaction name="actionContinue"/>
|
2021-06-25 12:40:11 +08:00
|
|
|
<addaction name="actionStop_Execution"/>
|
2021-08-01 01:06:43 +08:00
|
|
|
<addaction name="separator"/>
|
|
|
|
<addaction name="actionAdd_Watch"/>
|
2021-04-20 22:24:33 +08:00
|
|
|
</widget>
|
2021-09-11 09:21:44 +08:00
|
|
|
<widget class="QToolBar" name="toolbarCompilerSet">
|
2021-09-02 12:14:02 +08:00
|
|
|
<property name="windowTitle">
|
2021-09-25 21:34:10 +08:00
|
|
|
<string>Compiler Set</string>
|
2021-09-11 09:21:44 +08:00
|
|
|
</property>
|
|
|
|
<property name="iconSize">
|
|
|
|
<size>
|
|
|
|
<width>24</width>
|
|
|
|
<height>24</height>
|
|
|
|
</size>
|
2021-09-02 12:14:02 +08:00
|
|
|
</property>
|
|
|
|
<attribute name="toolBarArea">
|
|
|
|
<enum>TopToolBarArea</enum>
|
|
|
|
</attribute>
|
|
|
|
<attribute name="toolBarBreak">
|
|
|
|
<bool>false</bool>
|
|
|
|
</attribute>
|
|
|
|
</widget>
|
2021-04-07 21:13:15 +08:00
|
|
|
<action name="actionNew">
|
2021-04-08 10:29:21 +08:00
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
2021-04-12 00:14:53 +08:00
|
|
|
<normalon>:/icons/images/newlook24/050-newsrc.png</normalon>
|
2021-04-08 10:29:21 +08:00
|
|
|
</iconset>
|
|
|
|
</property>
|
2021-04-07 21:13:15 +08:00
|
|
|
<property name="text">
|
2021-09-17 09:56:52 +08:00
|
|
|
<string>New Source File</string>
|
2021-09-16 23:51:05 +08:00
|
|
|
</property>
|
|
|
|
<property name="toolTip">
|
2021-09-17 09:56:52 +08:00
|
|
|
<string>New Source File</string>
|
2021-04-07 21:13:15 +08:00
|
|
|
</property>
|
2021-04-11 21:33:08 +08:00
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+N</string>
|
|
|
|
</property>
|
2021-04-07 21:13:15 +08:00
|
|
|
</action>
|
|
|
|
<action name="actionOpen">
|
2021-04-08 10:29:21 +08:00
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
2021-04-12 00:14:53 +08:00
|
|
|
<normalon>:/icons/images/newlook24/053-open.png</normalon>
|
2021-04-08 10:29:21 +08:00
|
|
|
</iconset>
|
|
|
|
</property>
|
2021-04-07 21:13:15 +08:00
|
|
|
<property name="text">
|
|
|
|
<string>Open...</string>
|
|
|
|
</property>
|
2021-04-11 21:33:08 +08:00
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+O</string>
|
|
|
|
</property>
|
2021-04-07 21:13:15 +08:00
|
|
|
</action>
|
2021-04-08 10:29:21 +08:00
|
|
|
<action name="actionSave">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
2021-04-12 00:14:53 +08:00
|
|
|
<normalon>:/icons/images/newlook24/070-save.png</normalon>
|
2021-04-08 10:29:21 +08:00
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Save</string>
|
|
|
|
</property>
|
2021-04-11 21:33:08 +08:00
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+S</string>
|
|
|
|
</property>
|
2021-04-08 10:29:21 +08:00
|
|
|
</action>
|
|
|
|
<action name="actionSaveAs">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
2021-04-12 00:14:53 +08:00
|
|
|
<normalon>:/icons/images/newlook24/072-saveas.png</normalon>
|
2021-04-08 10:29:21 +08:00
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Save As...</string>
|
|
|
|
</property>
|
|
|
|
<property name="toolTip">
|
|
|
|
<string>Save As</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-04-16 22:04:48 +08:00
|
|
|
<action name="actionSaveAll">
|
2021-04-08 10:29:21 +08:00
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
2021-04-12 00:14:53 +08:00
|
|
|
<normalon>:/icons/images/newlook24/071-saveall.png</normalon>
|
2021-04-08 10:29:21 +08:00
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Save All</string>
|
|
|
|
</property>
|
2021-04-11 21:33:08 +08:00
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+Shift+S</string>
|
|
|
|
</property>
|
2021-04-08 10:29:21 +08:00
|
|
|
</action>
|
2021-04-16 22:04:48 +08:00
|
|
|
<action name="actionOptions">
|
2021-09-19 17:59:03 +08:00
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/061-rebuild.png</normaloff>:/icons/images/newlook24/061-rebuild.png</iconset>
|
|
|
|
</property>
|
2021-04-16 22:04:48 +08:00
|
|
|
<property name="text">
|
|
|
|
<string>Options</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-04-20 22:24:33 +08:00
|
|
|
<action name="actionCompile">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/013-compile.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Compile</string>
|
|
|
|
</property>
|
|
|
|
<property name="toolTip">
|
|
|
|
<string>Compile</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>F9</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-04-21 18:58:35 +08:00
|
|
|
<action name="actionRun">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/069-run.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Run</string>
|
|
|
|
</property>
|
|
|
|
<property name="toolTip">
|
|
|
|
<string>Run</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>F10</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-04-21 23:06:55 +08:00
|
|
|
<action name="actionUndo">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/086-undo.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Undo</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+Z</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionRedo">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/062-redo.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Redo</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+Y</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionCut">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/019-cut.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Cut</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+X</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionCopy">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/018-copy.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Copy</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+C</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionPaste">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/057-paste.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Paste</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+V</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionSelectAll">
|
|
|
|
<property name="text">
|
|
|
|
<string>Select All</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+A</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionIndent">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/031-Edit-Indent.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Indent</string>
|
|
|
|
</property>
|
2021-10-06 23:35:45 +08:00
|
|
|
<property name="shortcut">
|
|
|
|
<string>Tab</string>
|
|
|
|
</property>
|
2021-04-21 23:06:55 +08:00
|
|
|
</action>
|
|
|
|
<action name="actionUnIndent">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/032-Edit-Unindent.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>UnIndent</string>
|
|
|
|
</property>
|
2021-10-06 23:35:45 +08:00
|
|
|
<property name="shortcut">
|
|
|
|
<string>Shift+Tab</string>
|
|
|
|
</property>
|
2021-04-21 23:06:55 +08:00
|
|
|
</action>
|
2021-04-24 15:57:45 +08:00
|
|
|
<action name="actionToggleComment">
|
|
|
|
<property name="text">
|
|
|
|
<string>Toggle Comment</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+/</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionFoldAll">
|
2021-06-12 22:36:23 +08:00
|
|
|
<property name="enabled">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
2021-04-24 15:57:45 +08:00
|
|
|
<property name="text">
|
|
|
|
<string>Collapse All</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionUnfoldAll">
|
|
|
|
<property name="text">
|
|
|
|
<string>Uncollapse All</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-06-12 22:36:23 +08:00
|
|
|
<action name="actionEncode_in_ANSI">
|
|
|
|
<property name="text">
|
|
|
|
<string>Encode in ANSI</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionEncode_in_UTF_8">
|
|
|
|
<property name="text">
|
|
|
|
<string>Encode in UTF-8</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionAuto_Detect">
|
|
|
|
<property name="text">
|
|
|
|
<string>Auto Detect</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionConvert_to_ANSI">
|
|
|
|
<property name="text">
|
|
|
|
<string>Convert to ANSI</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionConvert_to_UTF_8">
|
|
|
|
<property name="text">
|
|
|
|
<string>Convert to UTF-8</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-06-25 12:40:11 +08:00
|
|
|
<action name="actionCompile_Run">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/017-comprun.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Compile & Run</string>
|
|
|
|
</property>
|
|
|
|
<property name="toolTip">
|
|
|
|
<string>Compile & Run</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>F11</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionRebuild">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/061-rebuild.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Rebuild All</string>
|
|
|
|
</property>
|
|
|
|
<property name="toolTip">
|
|
|
|
<string>Rebuild All</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>F12</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionStop_Execution">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/008-close.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Stop Execution</string>
|
|
|
|
</property>
|
2021-07-31 14:04:43 +08:00
|
|
|
<property name="shortcut">
|
|
|
|
<string>F6</string>
|
|
|
|
</property>
|
2021-06-25 12:40:11 +08:00
|
|
|
</action>
|
2021-07-20 15:16:52 +08:00
|
|
|
<action name="actionDebug">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/022-debug-new-tm.png</normaloff>:/icons/images/newlook24/022-debug-new-tm.png</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Debug</string>
|
|
|
|
</property>
|
|
|
|
<property name="toolTip">
|
|
|
|
<string>Debug</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>F5</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-07-31 14:04:43 +08:00
|
|
|
<action name="actionStep_Over">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/028-Debug-StepOver.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Step Over</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
2021-09-07 14:04:48 +08:00
|
|
|
<string>F8</string>
|
2021-07-31 14:04:43 +08:00
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionStep_Into">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/024-Debug-StepInto.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Step Into</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
2021-09-07 14:04:48 +08:00
|
|
|
<string>F7</string>
|
2021-07-31 14:04:43 +08:00
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionStep_Out">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/026-Debug-StepOut.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Step Out</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+F8</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionRun_To_Cursor">
|
|
|
|
<property name="text">
|
|
|
|
<string>Run To Cursor</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+F5</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionContinue">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/021-Debug-Continue.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Continue</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>F4</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-08-01 01:06:43 +08:00
|
|
|
<action name="actionAdd_Watch">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/088-watch.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Add Watch...</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-08-01 23:24:37 +08:00
|
|
|
<action name="actionView_CPU_Window">
|
|
|
|
<property name="text">
|
|
|
|
<string>View CPU Window...</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-08-02 10:08:25 +08:00
|
|
|
<action name="actionExit">
|
|
|
|
<property name="text">
|
|
|
|
<string>Exit</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-08-03 23:55:57 +08:00
|
|
|
<action name="actionFind">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/079-srchrep.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Find...</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+F</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionFind_in_files">
|
|
|
|
<property name="text">
|
|
|
|
<string>Find in Files...</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+Shift+F</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionReplace">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/066-replace.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Replace...</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+R</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionFind_Next">
|
|
|
|
<property name="text">
|
|
|
|
<string>Find Next</string>
|
|
|
|
</property>
|
2021-08-04 00:17:38 +08:00
|
|
|
<property name="shortcut">
|
|
|
|
<string>F3</string>
|
|
|
|
</property>
|
2021-08-03 23:55:57 +08:00
|
|
|
</action>
|
|
|
|
<action name="actionFind_Previous">
|
|
|
|
<property name="text">
|
|
|
|
<string>Find Previous</string>
|
|
|
|
</property>
|
2021-08-04 00:17:38 +08:00
|
|
|
<property name="shortcut">
|
2021-08-04 09:13:41 +08:00
|
|
|
<string>Shift+F3</string>
|
2021-08-04 00:17:38 +08:00
|
|
|
</property>
|
2021-08-03 23:55:57 +08:00
|
|
|
</action>
|
2021-08-31 11:13:12 +08:00
|
|
|
<action name="actionRemove_Watch">
|
|
|
|
<property name="text">
|
|
|
|
<string>Remove Watch</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionRemove_All_Watches">
|
|
|
|
<property name="text">
|
2021-10-23 16:18:02 +08:00
|
|
|
<string>Remove All Watches</string>
|
2021-08-31 11:13:12 +08:00
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionModify_Watch">
|
|
|
|
<property name="text">
|
|
|
|
<string>Modify Watch...</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-09-02 12:14:02 +08:00
|
|
|
<action name="actionReformat_Code">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/063-reformat.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Reformat Code</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+Shift+A</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionBack">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/006-Back.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Go back</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+Alt+Left</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionForward">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/038-Forward.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Forward</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+Alt+Right</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-09-02 19:36:16 +08:00
|
|
|
<action name="actionClose">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/010-closefl.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Close</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+W</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionClose_All">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/009-closeall.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Close All</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+Shift+W</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-09-02 20:12:16 +08:00
|
|
|
<action name="actionMaximize_Editor">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/030-dos.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Maximize Editor</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+F11</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-09-03 00:26:49 +08:00
|
|
|
<action name="actionNext_Editor">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/038-Forward.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Next</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+Tab</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionPrevious_Editor">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/006-Back.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Previous</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+Shift+Tab</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-09-03 10:30:08 +08:00
|
|
|
<action name="actionToggle_Breakpoint">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/editor/breakpoint.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Toggle breakpoint</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+F4</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionClear_all_breakpoints">
|
|
|
|
<property name="text">
|
|
|
|
<string>Clear all breakpoints</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionBreakpoint_property">
|
|
|
|
<property name="text">
|
|
|
|
<string>Breakpoint property...</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-09-03 11:50:04 +08:00
|
|
|
<action name="actionGoto_Declaration">
|
|
|
|
<property name="text">
|
|
|
|
<string>Goto Declaration</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionGoto_Definition">
|
|
|
|
<property name="text">
|
|
|
|
<string>Goto Definition</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionFind_references">
|
|
|
|
<property name="text">
|
|
|
|
<string>Find references</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-09-03 16:39:20 +08:00
|
|
|
<action name="actionOpen_Containing_Folder">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/090-explorer.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Open containing folder</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+B</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionOpen_Terminal">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/030-dos.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Open a terminal here</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-09-04 00:13:42 +08:00
|
|
|
<action name="actionFile_Properties">
|
|
|
|
<property name="text">
|
|
|
|
<string>File Properties...</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-09-12 01:01:34 +08:00
|
|
|
<action name="actionClose_Project">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/008-close.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Close Project</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-09-14 17:33:47 +08:00
|
|
|
<action name="actionProject_options">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/060-projopt.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Project options</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-09-16 23:51:05 +08:00
|
|
|
<action name="actionNew_Project">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset>
|
|
|
|
<normalon>:/icons/images/newlook24/049-newproj.png</normalon>
|
|
|
|
</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>New Project...</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-09-17 13:35:50 +08:00
|
|
|
<action name="actionProject_New_File">
|
2021-09-17 09:56:52 +08:00
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/050-newsrc.png</normaloff>:/icons/images/newlook24/050-newsrc.png</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>New File</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionAdd_to_project">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/004-addsrc.png</normaloff>:/icons/images/newlook24/004-addsrc.png</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Add to project...</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionRemove_from_project">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/064-remsrc.png</normaloff>:/icons/images/newlook24/064-remsrc.png</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Remove from project</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionView_Makefile">
|
|
|
|
<property name="text">
|
|
|
|
<string>View Makefile</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionMakeClean">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/011-clrhist.png</normaloff>:/icons/images/newlook24/011-clrhist.png</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Clean</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-09-18 10:47:35 +08:00
|
|
|
<action name="actionProject_Open_Folder_In_Explorer">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/090-explorer.png</normaloff>:/icons/images/newlook24/090-explorer.png</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Open Folder in Explorer</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionProject_Open_In_Terminal">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/030-dos.png</normaloff>:/icons/images/newlook24/030-dos.png</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Open In Terminal</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-10-03 23:12:20 +08:00
|
|
|
<action name="actionAbout">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/001-about.png</normaloff>:/icons/images/newlook24/001-about.png</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>About</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-10-04 11:07:35 +08:00
|
|
|
<action name="actionRename_Symbol">
|
|
|
|
<property name="text">
|
|
|
|
<string>Rename Symbol</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Shift+F6</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-10-07 07:52:20 +08:00
|
|
|
<action name="actionPrint">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/055-package.png</normaloff>:/icons/images/newlook24/055-package.png</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Print...</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+P</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-10-12 09:47:58 +08:00
|
|
|
<action name="actionExport_As_RTF">
|
|
|
|
<property name="text">
|
|
|
|
<string>Export As RTF</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionExport_As_HTML">
|
|
|
|
<property name="text">
|
|
|
|
<string>Export As HTML</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-10-13 11:32:59 +08:00
|
|
|
<action name="actionMove_To_Other_View">
|
|
|
|
<property name="text">
|
|
|
|
<string>Move To Other View</string>
|
|
|
|
</property>
|
|
|
|
<property name="shortcut">
|
|
|
|
<string>Ctrl+M</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-10-15 12:17:14 +08:00
|
|
|
<action name="actionC_C_Reference">
|
|
|
|
<property name="text">
|
2021-11-02 23:47:51 +08:00
|
|
|
<string>C++ Reference</string>
|
|
|
|
</property>
|
|
|
|
<property name="toolTip">
|
|
|
|
<string>C++ Reference</string>
|
2021-10-15 12:17:14 +08:00
|
|
|
</property>
|
|
|
|
</action>
|
2021-10-18 23:44:02 +08:00
|
|
|
<action name="actionEGE_Manual">
|
|
|
|
<property name="text">
|
|
|
|
<string>EGE Manual</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-10-21 17:31:25 +08:00
|
|
|
<action name="actionAdd_bookmark">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/003-addbook.png</normaloff>:/icons/images/newlook24/003-addbook.png</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Add Bookmark</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionRemove_Bookmark">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/064-remsrc.png</normaloff>:/icons/images/newlook24/064-remsrc.png</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Remove Bookmark</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionModify_Bookmark_Description">
|
|
|
|
<property name="text">
|
|
|
|
<string>Modify Bookmark Description</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-10-22 15:02:54 +08:00
|
|
|
<action name="actionLocate_in_Files_View">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/046-Locate.png</normaloff>:/icons/images/newlook24/046-Locate.png</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Locate in Files View</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionOpen_Folder">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/053-open.png</normaloff>:/icons/images/newlook24/053-open.png</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Open Folder</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-10-24 17:31:20 +08:00
|
|
|
<action name="actionRun_Parameters">
|
|
|
|
<property name="icon">
|
|
|
|
<iconset resource="icons.qrc">
|
|
|
|
<normaloff>:/icons/images/newlook24/014-compopt.png</normaloff>:/icons/images/newlook24/014-compopt.png</iconset>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Running Parameters...</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-11-02 23:47:51 +08:00
|
|
|
<action name="actionC_Reference">
|
|
|
|
<property name="text">
|
|
|
|
<string>C Reference</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-11-09 12:31:37 +08:00
|
|
|
<action name="actionTool_Window_Bars">
|
|
|
|
<property name="checkable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Tool Window Bars</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionStatus_Bar">
|
|
|
|
<property name="checkable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Status Bar</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionProject">
|
|
|
|
<property name="checkable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Project</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionWatch">
|
|
|
|
<property name="checkable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Watch</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionStructure">
|
|
|
|
<property name="checkable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Structure</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionFiles">
|
|
|
|
<property name="checkable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Files</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionProblem_Set">
|
|
|
|
<property name="checkable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Problem Set</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionIssues">
|
|
|
|
<property name="checkable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Issues</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionCompile_Log">
|
|
|
|
<property name="checkable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Compile Log</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionDebug_Window">
|
|
|
|
<property name="checkable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Debug</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionSearch">
|
|
|
|
<property name="checkable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Search</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionTODO">
|
|
|
|
<property name="checkable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>TODO</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionBookmark">
|
|
|
|
<property name="checkable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Bookmark</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
|
|
|
<action name="actionProblem">
|
|
|
|
<property name="checkable">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Problem</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2021-04-06 23:10:57 +08:00
|
|
|
</widget>
|
2021-04-24 15:57:45 +08:00
|
|
|
<customwidgets>
|
|
|
|
<customwidget>
|
|
|
|
<class>IssuesTable</class>
|
|
|
|
<extends>QTableView</extends>
|
2021-08-05 12:31:53 +08:00
|
|
|
<header location="global">widgets/issuestable.h</header>
|
2021-04-24 15:57:45 +08:00
|
|
|
</customwidget>
|
2021-07-17 19:32:23 +08:00
|
|
|
<customwidget>
|
|
|
|
<class>QConsole</class>
|
|
|
|
<extends>QFrame</extends>
|
|
|
|
<header location="global">widgets/qconsole.h</header>
|
|
|
|
<container>1</container>
|
|
|
|
</customwidget>
|
2021-10-23 23:10:34 +08:00
|
|
|
<customwidget>
|
|
|
|
<class>EditorsTabWidget</class>
|
|
|
|
<extends>QTabWidget</extends>
|
|
|
|
<header location="global">widgets/editorstabwidget.h</header>
|
|
|
|
<container>1</container>
|
|
|
|
</customwidget>
|
2021-04-24 15:57:45 +08:00
|
|
|
</customwidgets>
|
2021-07-20 15:16:52 +08:00
|
|
|
<resources>
|
|
|
|
<include location="icons.qrc"/>
|
|
|
|
</resources>
|
2021-04-06 23:10:57 +08:00
|
|
|
<connections/>
|
|
|
|
</ui>
|