Fixed titlebars

This commit is contained in:
Tobias Rundstrom 2006-02-19 16:25:23 -03:00
parent 1013c8dbeb
commit a709689b3d
2 changed files with 20 additions and 11 deletions

View file

@ -13,11 +13,17 @@ class TitleBar : public PixWidget
TitleBar (QWidget *parent, bool shaded);
~TitleBar ();
void setActive (bool active);
public slots:
void setPixmaps (Skin *skin);
protected:
void mouseDoubleClickEvent (QMouseEvent *event);
private:
QPixmap m_pixmap_active;
QPixmap m_pixmap_inactive;
bool m_shaded;
};
#endif