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.
80 lines
1.8 KiB
80 lines
1.8 KiB
|
|
#ifndef %{APPNAMEUC}_IMPL_H
|
|
#define %{APPNAMEUC}_IMPL_H
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <noatun/plugin.h>
|
|
#include <noatun/app.h>
|
|
|
|
// Pref dialog pointer global now for position saving
|
|
#include <noatun/pref.h>
|
|
|
|
class Player;
|
|
class TQSlider;
|
|
class TQPushButton;
|
|
class KStatusBar;
|
|
|
|
/**
|
|
* @short Main window class
|
|
* @author %{AUTHOR} <%{EMAIL}>
|
|
* @version 0.1
|
|
* Note: You can user _every_ widget for implementing your userinterface.
|
|
*/
|
|
class %{APPNAME}UI : public TQWidget, public UserInterface
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
%{APPNAME}UI();
|
|
virtual ~%{APPNAME}UI();
|
|
void load(const TQString& url);
|
|
|
|
protected:
|
|
virtual void dragEnterEvent(TQDragEnterEvent *event);
|
|
virtual void dropEvent(TQDropEvent *event);
|
|
virtual void closeEvent(TQCloseEvent*);
|
|
virtual void showEvent(TQShowEvent*e);
|
|
/** RMB -> context menu */
|
|
virtual void mouseReleaseEvent(TQMouseEvent *);
|
|
virtual bool eventFilter(TQObject*, TQEvent*);
|
|
/** volume control */
|
|
virtual void wheelEvent(TQWheelEvent *e);
|
|
|
|
protected:
|
|
TQSlider *seeker() const { return mSeeker; }
|
|
KStatusBar *statusBar() const { return mStatusBar; }
|
|
|
|
public slots:
|
|
void slotPlaying();
|
|
void slotStopped();
|
|
void slotPaused();
|
|
|
|
/** "show/hide playlist" button */
|
|
void playlistShown();
|
|
void playlistHidden();
|
|
|
|
void slotTimeout();
|
|
void sliderMoved(int seconds);
|
|
void changeLoopType(int t);
|
|
void skipToWrapper(int second);
|
|
|
|
signals:
|
|
void skipTo( int ); // emitted by skipToWrapper()
|
|
|
|
private slots:
|
|
void changeStatusbar(const TQString& text, const TQString &text2=0);
|
|
void changeCaption(const TQString& text);
|
|
void popup();
|
|
|
|
private:
|
|
TQPushButton *mBack, *mStop, *mPlay, *mForward, *mPlaylist, *mPopup, *mLoop;
|
|
TQSlider *mSeeker, *mVolume;
|
|
KStatusBar *mStatusBar;
|
|
};
|
|
|
|
#endif // %{APPNAMEUC}_IMPL_H
|
|
|