diff options
author | Michael Hanson <hansonorders@verison.net> | 2010-03-16 01:10:27 (GMT) |
---|---|---|
committer | Michael Hanson <hansonorders@verison.net> | 2010-03-16 01:10:27 (GMT) |
commit | 9b21117f278cd08cbef46de2ac78b063e63677ed (patch) | |
tree | d8a2183d6a2a182abe0e25af4e2d0356a6eb3154 /abs/core/mythinstall/statusbox.h | |
parent | 440af0ccbbbf8fc4daba830dcf47d0a6da1ae697 (diff) | |
parent | 5fa0aec4485b8adea46ef434d8c5384482b44c65 (diff) | |
download | linhes_pkgbuild-9b21117f278cd08cbef46de2ac78b063e63677ed.zip linhes_pkgbuild-9b21117f278cd08cbef46de2ac78b063e63677ed.tar.gz linhes_pkgbuild-9b21117f278cd08cbef46de2ac78b063e63677ed.tar.bz2 |
Merge branch 'master' of mihanson@knoppmyth.net:LinHES-PKGBUILD
Diffstat (limited to 'abs/core/mythinstall/statusbox.h')
-rwxr-xr-x | abs/core/mythinstall/statusbox.h | 76 |
1 files changed, 0 insertions, 76 deletions
diff --git a/abs/core/mythinstall/statusbox.h b/abs/core/mythinstall/statusbox.h deleted file mode 100755 index dd209ca..0000000 --- a/abs/core/mythinstall/statusbox.h +++ /dev/null @@ -1,76 +0,0 @@ -#ifndef STATUSBOX_H_ -#define STATUSBOX_H_ - -#include <qstringlist.h> -#include "mythwidgets.h" -#include "mythdialogs.h" -#include "uitypes.h" -#include "xmlparse.h" -#include "programinfo.h" - -typedef QMap<QString, unsigned int> recprof2bps_t; - -class LayerSet; - -class StatusBox : public MythDialog -{ - Q_OBJECT - public: - StatusBox(MythMainWindow *parent, const char *name = 0); - ~StatusBox(void); - - bool IsErrored() const { return errored; } - - protected slots: - - protected: - void keyPressEvent(QKeyEvent *e); - void paintEvent(QPaintEvent *e); - - private: - void updateTopBar(); - void updateSelector(); - void updateContent(); - void LoadTheme(); - void doListingsStatus(); - void doTunerStatus(); - void doLogEntries(); - void doJobQueueStatus(); - void doMachineStatus(); - void doAutoExpireList(); - void clicked(); - void setHelpText(); - void getActualRecordedBPS(QString hostnames); - - XMLParse *theme; - QDomElement xmldata; - QRect TopRect, SelectRect, ContentRect; - UITextType *heading, *helptext; - UIListType *icon_list, *list_area; - LayerSet *selector, *topbar, *content; - - int max_icons; - - bool inContent, doScroll; - int contentTotalLines; - int contentSize; - int contentPos; - int contentMid; - int min_level; - QString dateFormat, timeFormat, timeDateFormat; - - QMap<int, QString> contentLines; - QMap<int, QString> contentDetail; - QMap<int, QString> contentFont; - QMap<int, QString> contentData; - recprof2bps_t recordingProfilesBPS; - - vector<ProgramInfo *> expList; - - MythMainWindow *my_parent; - - bool isBackend; - bool errored; -}; - -#endif |