Skip to content
Snippets Groups Projects
Commit f593b0d6 authored by Jens Bache-Wiig's avatar Jens Bache-Wiig
Browse files

Polish for the build page

I added a sidebar as suggested in the ergosign
screenshots. It is required to balance things.
parent e0c381bb
No related branches found
No related tags found
No related merge requests found
...@@ -118,17 +118,40 @@ public: ...@@ -118,17 +118,40 @@ public:
} }
}; };
class RootWidget : public QWidget
{
public:
RootWidget(QWidget *parent) : QWidget(parent) {}
void paintEvent(QPaintEvent *);
};
void RootWidget::paintEvent(QPaintEvent *e)
{
QWidget::paintEvent(e);
QPainter painter(this);
painter.setPen(QColor(255, 255, 255, 90));
painter.drawLine(rect().topRight(), rect().bottomRight());
painter.setPen(QColor(0, 0, 0, 30));
painter.drawLine(rect().topRight() - QPoint(1,0), rect().bottomRight() - QPoint(1,0));
}
/// ///
// PanelsWidget // PanelsWidget
/// ///
PanelsWidget::PanelsWidget(QWidget *parent) : PanelsWidget::PanelsWidget(QWidget *parent) :
QScrollArea(parent), QScrollArea(parent),
m_root(new QWidget(this)) m_root(new RootWidget(this))
{ {
// We want a 900px wide widget with and the scrollbar at the // We want a 900px wide widget with and the scrollbar at the
// side of the screen. // side of the screen.
m_root->setFixedWidth(900); m_root->setFixedWidth(900);
m_root->setContentsMargins(0, 0, 20, 0);
QPalette pal = m_root->palette();
pal.setColor(QPalette::All, QPalette::Window, QColor(255, 255, 255, 40));
setPalette(pal);
// The layout holding the individual panels: // The layout holding the individual panels:
m_layout = new QGridLayout(m_root); m_layout = new QGridLayout(m_root);
m_layout->setColumnMinimumWidth(0, ICON_SIZE + 4); m_layout->setColumnMinimumWidth(0, ICON_SIZE + 4);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment