GUI: added a link to the FAQ
This commit is contained in:
parent
8944c824fe
commit
6008e02e6e
|
@ -1230,3 +1230,8 @@ void MainWindow::chkSaveloadTabSavedOrderStateChangedSlot(bool state)
|
||||||
else
|
else
|
||||||
loadTabDefaultOrder();
|
loadTabDefaultOrder();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::on_actionFaq_triggered()
|
||||||
|
{
|
||||||
|
QDesktopServices::openUrl(QUrl("http://faq.x64dbg.com"));
|
||||||
|
}
|
||||||
|
|
|
@ -200,6 +200,8 @@ protected:
|
||||||
|
|
||||||
public:
|
public:
|
||||||
static QString windowTitle;
|
static QString windowTitle;
|
||||||
|
private slots:
|
||||||
|
void on_actionFaq_triggered();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // MAINWINDOW_H
|
#endif // MAINWINDOW_H
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>800</width>
|
<width>868</width>
|
||||||
<height>600</height>
|
<height>600</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>800</width>
|
<width>868</width>
|
||||||
<height>21</height>
|
<height>21</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
@ -95,6 +95,7 @@
|
||||||
<addaction name="actionReportBug"/>
|
<addaction name="actionReportBug"/>
|
||||||
<addaction name="separator"/>
|
<addaction name="separator"/>
|
||||||
<addaction name="actionManual"/>
|
<addaction name="actionManual"/>
|
||||||
|
<addaction name="actionFaq"/>
|
||||||
<addaction name="actionAbout"/>
|
<addaction name="actionAbout"/>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QMenu" name="menuPlugins">
|
<widget class="QMenu" name="menuPlugins">
|
||||||
|
@ -173,6 +174,9 @@
|
||||||
<addaction name="actionCheckUpdates"/>
|
<addaction name="actionCheckUpdates"/>
|
||||||
<addaction name="actionDonate"/>
|
<addaction name="actionDonate"/>
|
||||||
<addaction name="actionReportBug"/>
|
<addaction name="actionReportBug"/>
|
||||||
|
<addaction name="separator"/>
|
||||||
|
<addaction name="actionManual"/>
|
||||||
|
<addaction name="actionFaq"/>
|
||||||
<addaction name="actionAbout"/>
|
<addaction name="actionAbout"/>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QStatusBar" name="statusBar">
|
<widget class="QStatusBar" name="statusBar">
|
||||||
|
@ -677,6 +681,18 @@
|
||||||
<string>&Manual</string>
|
<string>&Manual</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
|
<action name="actionFaq">
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="../../resource.qrc">
|
||||||
|
<normaloff>:/icons/images/faq.png</normaloff>:/icons/images/faq.png</iconset>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>&FAQ</string>
|
||||||
|
</property>
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>FAQ</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
</widget>
|
</widget>
|
||||||
<layoutdefault spacing="6" margin="11"/>
|
<layoutdefault spacing="6" margin="11"/>
|
||||||
<resources>
|
<resources>
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 308 B |
|
@ -65,5 +65,6 @@
|
||||||
<file>images/entropy.png</file>
|
<file>images/entropy.png</file>
|
||||||
<file>images/notes.png</file>
|
<file>images/notes.png</file>
|
||||||
<file>images/win-help.png</file>
|
<file>images/win-help.png</file>
|
||||||
|
<file>images/faq.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
|
Loading…
Reference in New Issue