Unbreak resizing and scrolling.

This commit is contained in:
Tobias Rundstrom 2006-02-26 14:36:54 -03:00
parent 5dec0fb5fe
commit 56dd4cf3ee
5 changed files with 34 additions and 17 deletions

View file

@ -11,6 +11,14 @@
class PlaylistWindow;
class PlaylistScroller;
class dragButton : public Button {
public:
dragButton (QWidget *parent) : Button (parent) {}
~dragButton () {}
void mouseMoveEvent (QMouseEvent *event);
};
class PlaylistScrollButton : public Button {
public:
PlaylistScrollButton (PlaylistScroller *parent, uint normal, uint pressed);
@ -94,6 +102,7 @@ class PlaylistWindow : public QMainWindow {
PlaylistView *m_view;
PlaylistList *m_list;
PlaylistScroller *m_scroller;
dragButton *m_drag;
};
#endif