Initial commit

This commit is contained in:
Tobias Rundstrom 2006-02-14 23:12:46 -03:00
commit cc0faeee08
61 changed files with 1410 additions and 0 deletions

23
TitleBar.h Normal file
View file

@ -0,0 +1,23 @@
#ifndef __TITLEBAR_H__
#define __TITLEBAR_H__
#include <QWidget>
#include "PixWidget.h"
using namespace std;
class TitleBar : public PixWidget
{
Q_OBJECT
public:
TitleBar (QWidget *parent, bool shaded);
~TitleBar ();
void setActive (bool active);
protected:
void mouseDoubleClickEvent (QMouseEvent *event);
private:
QPixmap m_pixmap_active;
QPixmap m_pixmap_inactive;
};
#endif