2017-03-29 10:18:37 +00:00
|
|
|
#ifndef SIDEBAR_H
|
|
|
|
#define SIDEBAR_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
class MainWindow;
|
|
|
|
|
2017-04-09 19:55:06 +00:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class SideBar;
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class SideBar : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-04-01 02:09:03 +00:00
|
|
|
explicit SideBar(MainWindow *main);
|
2017-03-29 10:18:37 +00:00
|
|
|
~SideBar();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void themesButtonToggle();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
|
|
|
void on_tabsButton_clicked();
|
|
|
|
|
|
|
|
void on_consoleButton_clicked();
|
|
|
|
|
|
|
|
void on_webServerButton_clicked();
|
|
|
|
|
|
|
|
void on_lockButton_clicked();
|
|
|
|
|
|
|
|
void on_themesButton_clicked();
|
|
|
|
|
|
|
|
void on_calcInput_textChanged(const QString &arg1);
|
|
|
|
|
|
|
|
void on_asm2hex_clicked();
|
|
|
|
|
|
|
|
void on_hex2asm_clicked();
|
|
|
|
|
|
|
|
void on_respButton_toggled(bool checked);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::SideBar *ui;
|
2017-04-01 02:09:03 +00:00
|
|
|
MainWindow *main;
|
2017-03-29 10:18:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SIDEBAR_H
|