show options dialog
[tomamp] / mainwindow.h
index 898df91..a18122f 100644 (file)
@@ -85,6 +85,7 @@ private slots:
     void finished();
     void tableClicked(int row, int column);
     void play();
+    void stop();
     void next();
     void previous();
     void cellClicked(int row, int column);
@@ -97,6 +98,11 @@ private slots:
     void removeAllButSelectedItem ();
     void highlightRow (int i);
     void unhighlightRow (int i);
+    void buttonUp ();
+    void buttonDown ();
+    void buttonDel ();
+    void itemRemoved (int i);
+    void showOptions ();
 
 protected:
     void contextMenuEvent (QContextMenuEvent*e);
@@ -134,6 +140,7 @@ private:
     QAction *aboutQtAction;
     QAction *removeSelected;
     QAction *removeAllButSelected;
+    QAction *optionAction;
     QMenu   *contextMenu;
     QToolBar *bar;
     QLCDNumber *timeLcd;
@@ -143,6 +150,7 @@ private:
     QSettings settings;
     QList<int>  shuffleList;
     int lastPlayed;
+    bool isPlaying;
 };
 
 #endif