Commit bba6e3e2 authored by Christoffer Ackelman's avatar Christoffer Ackelman

QT: Wasted 2 days trying to fix the color theme on OP, only to realize it...

QT: Wasted 2 days trying to fix the color theme on OP, only to realize it looks much better using the standard desktop theme.
parent 8eb3bca0
This diff is collapsed.
......@@ -88,7 +88,7 @@ public:
QWidget* funcbox[5];
QMenuBar* menu_bar;
QLabel* title_label;
QWidget* appl_buttons[25];
QPushButton* appl_buttons[25];
QToolBar* tools;
QToolBar* tools2;
QColor red_color;
......@@ -169,4 +169,18 @@ private:
OpQt* op;
};
class ClickableFrame : public QFrame {
Q_OBJECT
public:
ClickableFrame();
~ClickableFrame();
signals:
void clicked();
protected:
void mousePressEvent(QMouseEvent* event);
};
#endif
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment