#include "plugin_%{APPNAMELC}_impl.h" #include "plugin_%{APPNAMELC}_impl.moc" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //#include //#include %{APPNAME}UI::%{APPNAME}UI() : TQWidget(0,"%{APPNAME}UI"), UserInterface() { setAcceptDrops(true); static const int buttonSize=32; mBack=new TQPushButton(this); mBack->setFixedSize(buttonSize,buttonSize); mBack->setPixmap(BarIcon("noatunback")); connect(mBack, TQT_SIGNAL(clicked()), napp->player(), TQT_SLOT(back())); TQToolTip::add(mBack,i18n("Back")); mStop=new TQPushButton(this); mStop->setFixedSize(buttonSize,buttonSize); mStop->setPixmap(BarIcon("noatunstop")); connect(mStop, TQT_SIGNAL(clicked()), napp->player(), TQT_SLOT(stop())); TQToolTip::add(mStop, i18n("Stop")); mPlay=new TQPushButton(this); mPlay->setToggleButton(true); mPlay->setFixedSize(buttonSize,buttonSize); mPlay->setPixmap(BarIcon("noatunplay")); connect(mPlay, TQT_SIGNAL(clicked()), napp->player(), TQT_SLOT(playpause())); TQToolTip::add(mPlay, i18n("Play")); mForward=new TQPushButton(this); mForward->setFixedSize(buttonSize,buttonSize); mForward->setPixmap(BarIcon("noatunforward")); connect(mForward, TQT_SIGNAL(clicked()), napp->player(), TQT_SLOT(forward())); TQToolTip::add(mForward, i18n("Forward")); mPlaylist=new TQPushButton(this); mPlaylist->setToggleButton(true); mPlaylist->setFixedSize(buttonSize,buttonSize); mPlaylist->setPixmap(BarIcon("noatunplaylist")); connect(mPlaylist, TQT_SIGNAL(clicked()), napp->player(), TQT_SLOT(toggleListView())); TQToolTip::add(mPlaylist, i18n("Playlist")); mLoop=new TQPushButton(this); mLoop->setFixedSize(buttonSize,buttonSize); mLoop->setPixmap(BarIcon("noatunloopnone")); connect(mLoop, TQT_SIGNAL(clicked()), napp->player(), TQT_SLOT(loop())); TQToolTip::add(mLoop, i18n("Change loop style")); mPopup=new TQPushButton(this); mPopup->setFixedSize(buttonSize,buttonSize); mPopup->setPixmap(BarIcon("noatun")); connect(mPopup, TQT_SIGNAL(clicked()), TQT_SLOT(popup())); mVolume=new L33tSlider(0,100,10,0,Qt::Horizontal, this); mVolume->setValue(napp->player()->volume()); mSeeker=new L33tSlider(0,1000,10,0,Qt::Horizontal, this); mStatusBar=new KStatusBar(this); TQGridLayout *l=new TQGridLayout(this); l->addWidget(mBack,0,0); l->addWidget(mStop,0,1); l->addWidget(mPlay,0,2); l->addWidget(mForward,0,3); l->addWidget(mPlaylist,0,4, TQt::AlignLeft); l->addWidget(mLoop,0,5); l->addWidget(mPopup,0,6); l->addColSpacing(4, buttonSize+8); l->addMultiCellWidget(mVolume,1,1,0,6); l->addMultiCellWidget(mSeeker,2,2,0,6); l->addMultiCellWidget(mStatusBar,3,3,0,6); statusBar()->message(i18n("No File Loaded")); statusBar()->insertItem("--:--/--:--", 1, 0, true); connect(napp, TQT_SIGNAL(hideYourself()), this, TQT_SLOT(hide()) ); connect(napp, TQT_SIGNAL(showYourself()), this, TQT_SLOT(show()) ); connect(napp->player(), TQT_SIGNAL(playing()), this, TQT_SLOT(slotPlaying())); connect(napp->player(), TQT_SIGNAL(stopped()), this, TQT_SLOT(slotStopped())); connect(napp->player(), TQT_SIGNAL(paused()), this, TQT_SLOT(slotPaused())); napp->player()->handleButtons(); connect(napp->player(), TQT_SIGNAL(timeout()), this, TQT_SLOT(slotTimeout())); connect(napp->player(), TQT_SIGNAL(loopTypeChange(int)), this, TQT_SLOT(changeLoopType(int))); /* This skipToWrapper is needed to pass milliseconds to Player() as everybody * below the GUI is based on milliseconds instead of some unprecise thingy * like seconds or mille */ connect(seeker(), TQT_SIGNAL(userChanged(int)), this, TQT_SLOT(skipToWrapper(int))); connect(this, TQT_SIGNAL(skipTo(int)), napp->player(), TQT_SLOT(skipTo(int))); connect(seeker(), TQT_SIGNAL(sliderMoved(int)), TQT_SLOT(sliderMoved(int))); connect(mVolume, TQT_SIGNAL(sliderMoved(int)), napp->player(), TQT_SLOT(setVolume(int))); connect(mVolume, TQT_SIGNAL(userChanged(int)), napp->player(), TQT_SLOT(setVolume(int))); connect(napp->player(), TQT_SIGNAL(playlistShown()), TQT_SLOT(playlistShown())); connect(napp->player(), TQT_SIGNAL(playlistHidden()), TQT_SLOT(playlistHidden())); // Event Filter for the RMB for (TQPtrListIterator i(*children()); i.current(); ++i) (*i)->installEventFilter(this); setCaption("Noatun"); setIcon(BarIcon("noatun")); show(); // What it is now, stay. setFixedSize(minimumSize()); } %{APPNAME}UI::~%{APPNAME}UI() { /** save settings here */ } void %{APPNAME}UI::closeEvent(TQCloseEvent*) { unload(); } void %{APPNAME}UI::showEvent(TQShowEvent*e) { TQWidget::showEvent(e); } void %{APPNAME}UI::dragEnterEvent(TQDragEnterEvent *event) { // accept uri drops only event->accept(KURLDrag::canDecode(event)); } void %{APPNAME}UI::dropEvent(TQDropEvent *event) { KURL::List uri; if (KURLDrag::decode(event, uri)) { for (KURL::List::Iterator i = uri.begin(); i != uri.end(); ++i) napp->player()->openFile(*i, false); } } void %{APPNAME}UI::mouseReleaseEvent(TQMouseEvent *e) { TQWidget::mouseReleaseEvent(e); if (e->button()!=RightButton) return; NoatunStdAction::ContextMenu::showContextMenu(); } void %{APPNAME}UI::changeStatusbar(const TQString& text, const TQString &text2) { if (!text2.isNull()) statusBar()->changeItem(text2, 1); statusBar()->message(!text.isNull() ? text : napp->player()->current().title()); } void %{APPNAME}UI::changeCaption(const TQString& text) { setCaption(text); } void %{APPNAME}UI::popup() { NoatunStdAction::ContextMenu::showContextMenu( mapToGlobal(mPopup->geometry().bottomLeft()) ); } void %{APPNAME}UI::slotPlaying() { changeStatusbar(napp->player()->current().title(), napp->player()->lengthString()); mPlay->setOn(true); mStop->setEnabled(true); mPlay->setPixmap(BarIcon("noatunpause")); } void %{APPNAME}UI::slotStopped() { if (!napp->player()->current()) return; changeStatusbar(i18n("No File Loaded"), napp->player()->lengthString()); mStop->setEnabled(false); mPlay->setOn(false); seeker()->setValue(0); mPlay->setPixmap(BarIcon("noatunplay")); } void %{APPNAME}UI::slotPaused() { mStop->setEnabled(true); mPlay->setOn(false); mPlay->setPixmap(BarIcon("noatunplay")); } void %{APPNAME}UI::slotTimeout() { mVolume->setValue(napp->player()->volume()); if (!napp->player()->current()) return; if (static_cast(seeker())->currentlyPressed()) return; if (seeker()) { seeker()->setRange ( 0, (int)napp->player()->getLength()/1000 ); seeker()->setValue ( (int)napp->player()->getTime()/1000 ); } changeStatusbar(0, napp->player()->lengthString()); } void %{APPNAME}UI::sliderMoved(int seconds) { if (napp->player()->current()) changeStatusbar(0, napp->player()->lengthString(seconds*1000)); } void %{APPNAME}UI::skipToWrapper(int second) { emit skipTo((long)(second*1000)); } void %{APPNAME}UI::changeLoopType(int t) { static const int time=2000; switch (t) { case(Player::None): statusBar()->message(i18n("No looping"), time); mLoop->setPixmap(BarIcon("noatunloopnone")); break; case(Player::Song): statusBar()->message(i18n("Song looping"), time); mLoop->setPixmap(BarIcon("noatunloopsong")); break; case(Player::Playlist): statusBar()->message(i18n("Playlist looping"), time); mLoop->setPixmap(BarIcon("noatunloopplaylist")); break; case(Player::Random): statusBar()->message(i18n("Random play"), time); mLoop->setPixmap(BarIcon("noatunlooprandom")); } } bool %{APPNAME}UI::eventFilter(TQObject *o, TQEvent *e) { if ((e->type() == TQEvent::MouseButtonRelease) && ((static_cast(e))->button()==RightButton)) { mouseReleaseEvent(static_cast(e)); return true; } if (e->type() == TQEvent::Wheel) { wheelEvent(static_cast(e)); return true; } return TQWidget::eventFilter(o, e); } void %{APPNAME}UI::playlistShown() { mPlaylist->setOn(true); } void %{APPNAME}UI::playlistHidden() { mPlaylist->setOn(false); } void %{APPNAME}UI::wheelEvent(TQWheelEvent *e) { int delta=e->delta(); mVolume->setValue(mVolume->value()+(delta/120)); napp->player()->setVolume(mVolume->value()+(delta/120)); }