You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
635 B
38 lines
635 B
14 years ago
|
|
||
|
#ifndef UBPAGENUMBERPALLETTE_H_
|
||
|
#define UBPAGENUMBERPALLETTE_H_
|
||
|
|
||
|
class QHBoxLayout;
|
||
|
class QPushButton;
|
||
|
|
||
|
#include "UBFloatingPalette.h"
|
||
|
|
||
|
|
||
|
class UBPageNumberPalette : public UBFloatingPalette
|
||
|
{
|
||
|
Q_OBJECT;
|
||
|
|
||
|
public:
|
||
|
UBPageNumberPalette(QWidget *parent = 0);
|
||
|
virtual ~UBPageNumberPalette();
|
||
|
|
||
|
protected:
|
||
|
int radius();
|
||
|
|
||
|
private:
|
||
|
QHBoxLayout *mLayout;
|
||
|
QPushButton *mButton;
|
||
|
|
||
|
private slots:
|
||
|
void buttonClicked(bool checked);
|
||
|
|
||
|
public slots:
|
||
|
void setPageNumber(int current, int total);
|
||
|
|
||
|
signals:
|
||
|
void clicked();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif /* UBPAGENUMBERPALLETTE_H_ */
|