00001 /*************************************************************************** 00002 * SpikeStream Application * 00003 * Copyright (C) 2007 by David Gamez * 00004 * david@davidgamez.eu * 00005 * Version 0.1 * 00006 * * 00007 * This program is free software; you can redistribute it and/or modify * 00008 * it under the terms of the GNU General Public License as published by * 00009 * the Free Software Foundation; either version 2 of the License, or * 00010 * (at your option) any later version. * 00011 * * 00012 * This program is distributed in the hope that it will be useful, * 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00015 * GNU General Public License for more details. * 00016 * * 00017 * You should have received a copy of the GNU General Public License * 00018 * along with this program; if not, write to the * 00019 * Free Software Foundation, Inc., * 00020 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 00021 ***************************************************************************/ 00022 00023 #ifndef LOADARCHIVEDIALOG_H 00024 #define LOADARCHIVEDIALOG_H 00025 00026 //SpikeStream includes 00027 #include "DBInterface.h" 00028 00029 //Qt includes 00030 #include <qdialog.h> 00031 #include <qlistbox.h> 00032 #include <qstring.h> 00033 00034 //Other includes 00035 #include <map> 00036 00037 00038 //------------------------ Load Archive Dialog ---------------------------- 00039 /*! Used to select an archive for playing back. */ 00040 //------------------------------------------------------------------------- 00041 00042 class LoadArchiveDialog : public QDialog { 00043 Q_OBJECT 00044 00045 public: 00046 LoadArchiveDialog(QWidget *parent, DBInterface*); 00047 ~LoadArchiveDialog(); 00048 QString getArchiveString(); 00049 00050 00051 signals: 00052 void archiveNameChanged(QString archiveStartTime, QString newName); 00053 void deleteArchiveStarted(); 00054 void deleteArchiveFinished(); 00055 00056 00057 private slots: 00058 void deleteAllButtonPressed(); 00059 void deleteButtonPressed(); 00060 void okButtonPressed(); 00061 void renameButtonPressed(); 00062 00063 00064 private: 00065 //=========================== VARIABLES ============================= 00066 /*! Reference to database handling class.*/ 00067 DBInterface *archiveDBInterface; 00068 00069 //Qt variables 00070 QListBox *archiveList; 00071 00072 00073 //============================ METHODS ============================== 00074 /*! Declare copy constructor private so it cannot be used inadvertently.*/ 00075 LoadArchiveDialog (const LoadArchiveDialog&); 00076 00077 /*! Declare assignment private so it cannot be used inadvertently.*/ 00078 LoadArchiveDialog operator = (const LoadArchiveDialog&); 00079 00080 unsigned int getUnixTime(QString &timeString); 00081 void loadArchiveInformation(); 00082 00083 }; 00084 00085 00086 #endif //LOADARCHIVEDIALOG_H 00087
1.4.4