Files
qt-creator/src/libs/utils/styledbar.h

33 lines
571 B
C
Raw Normal View History

2009-07-15 12:42:09 +02:00
#ifndef STYLEDBAR_H
#define STYLEDBAR_H
#include "utils_global.h"
#include <QtGui/QWidget>
namespace Core {
namespace Utils {
class QTCREATOR_UTILS_EXPORT StyledBar : public QWidget
{
public:
StyledBar(QWidget *parent = 0);
2009-07-15 16:23:07 +02:00
void setSingleRow(bool singleRow);
bool isSingleRow() const;
2009-07-15 12:42:09 +02:00
protected:
void paintEvent(QPaintEvent *event);
};
class QTCREATOR_UTILS_EXPORT StyledSeparator : public QWidget
{
public:
StyledSeparator(QWidget *parent = 0);
protected:
void paintEvent(QPaintEvent *event);
};
2009-07-15 12:42:09 +02:00
} // Utils
} // Core
#endif // STYLEDBAR_H