summaryrefslogtreecommitdiff
path: root/core/launcher/launcher.h
Unidiff
Diffstat (limited to 'core/launcher/launcher.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/launcher.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/core/launcher/launcher.h b/core/launcher/launcher.h
index d2efa58..e3881ea 100644
--- a/core/launcher/launcher.h
+++ b/core/launcher/launcher.h
@@ -1,7 +1,7 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of the Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
@@ -20,6 +20,7 @@
20#ifndef LAUNCHER_H 20#ifndef LAUNCHER_H
21#define LAUNCHER_H 21#define LAUNCHER_H
22 22
23#include <qpe/config.h>
23#include <qmainwindow.h> 24#include <qmainwindow.h>
24#include <qtabbar.h> 25#include <qtabbar.h>
25#include <qstringlist.h> 26#include <qstringlist.h>
@@ -60,6 +61,8 @@ public:
60 void updateDocs(AppLnkSet* docFolder, const QList<FileSystem> &fs); 61 void updateDocs(AppLnkSet* docFolder, const QList<FileSystem> &fs);
61 void updateLink(const QString& linkfile); 62 void updateLink(const QString& linkfile);
62 void setBusy(bool on); 63 void setBusy(bool on);
64 QString getAllDocLinkInfo() const;
65 LauncherView *view( const QString &id );
63 66
64signals: 67signals:
65 void selected(const QString&); 68 void selected(const QString&);
@@ -70,7 +73,11 @@ public slots:
70 void nextTab(); 73 void nextTab();
71 void prevTab(); 74 void prevTab();
72 75
76protected slots:
77 void tabProperties();
78
73protected: 79protected:
80 void setTabAppearance( const QString &id, Config &cfg );
74 void paletteChange( const QPalette &p ); 81 void paletteChange( const QPalette &p );
75 82
76private: 83private:
@@ -111,6 +118,7 @@ signals:
111private slots: 118private slots:
112 void doMaximize(); 119 void doMaximize();
113 void systemMessage( const QCString &, const QByteArray &); 120 void systemMessage( const QCString &, const QByteArray &);
121 void launcherMessage( const QCString &, const QByteArray &);
114 void storageChanged(); 122 void storageChanged();
115 void cancelSync(); 123 void cancelSync();
116 124
@@ -132,6 +140,7 @@ private:
132 bool in_lnk_props; 140 bool in_lnk_props;
133 bool got_lnk_change; 141 bool got_lnk_change;
134 QString lnk_change; 142 QString lnk_change;
143
135 QString m_timeStamp; 144 QString m_timeStamp;
136 Qtopia::UidGen uidgen; 145 Qtopia::UidGen uidgen;
137}; 146};