summaryrefslogtreecommitdiffstats
path: root/korganizer/koviewmanager.h
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch)
tree67208f7c145782a7e90b123b982ca78d88cc2c87 /korganizer/koviewmanager.h
downloadtdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz
tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'korganizer/koviewmanager.h')
-rw-r--r--korganizer/koviewmanager.h134
1 files changed, 134 insertions, 0 deletions
diff --git a/korganizer/koviewmanager.h b/korganizer/koviewmanager.h
new file mode 100644
index 000000000..4a401d189
--- /dev/null
+++ b/korganizer/koviewmanager.h
@@ -0,0 +1,134 @@
+/*
+ This file is part of KOrganizer.
+
+ Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org>
+ Copyright (C) 2003-2004 Reinhold Kainhofer <reinhold@kainhofer.com>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+ As a special exception, permission is given to link this program
+ with any edition of Qt, and distribute the resulting executable,
+ without including the source code for Qt in the source distribution.
+*/
+#ifndef KOVIEWMANAGER_H
+#define KOVIEWMANAGER_H
+
+#include <qobject.h>
+class QWidget;
+class QTabWidget;
+
+class CalendarView;
+
+class KOListView;
+class KOAgendaView;
+class KOMonthView;
+class KOTodoView;
+class KOWhatsNextView;
+class KOJournalView;
+class KOTimelineView;
+
+namespace KOrg {
+ class BaseView;
+ class MultiAgendaView;
+}
+using namespace KCal;
+
+/**
+ This class manages the views of the calendar. It owns the objects and handles
+ creation and selection.
+*/
+class KOViewManager : public QObject
+{
+ Q_OBJECT
+ public:
+ KOViewManager( CalendarView * );
+ virtual ~KOViewManager();
+
+ /** changes the view to be the currently selected view */
+ void showView( KOrg::BaseView * );
+
+ void readSettings( KConfig *config );
+ void writeSettings( KConfig *config );
+
+ /** Read which view was shown last from config file */
+ void readCurrentView( KConfig * );
+ /** Write which view is currently shown to config file */
+ void writeCurrentView( KConfig * );
+
+ KOrg::BaseView *currentView();
+
+ void setDocumentId( const QString & );
+
+ void updateView();
+ void updateView( const QDate &start, const QDate &end );
+
+ void raiseCurrentView();
+
+ void connectView( KOrg::BaseView * );
+ void addView( KOrg::BaseView * );
+
+ Incidence *currentSelection();
+ QDate currentSelectionDate();
+
+ KOAgendaView *agendaView() const { return mAgendaView; }
+ KOrg::MultiAgendaView *multiAgendaView() const { return mAgendaSideBySideView; }
+ KOTodoView *todoView() const { return mTodoView; }
+
+ public slots:
+ void showWhatsNextView();
+ void showListView();
+ void showAgendaView();
+ void showDayView();
+ void showWorkWeekView();
+ void showWeekView();
+ void showNextXView();
+ void showMonthView();
+ void showTodoView();
+ void showTimelineView();
+ void showJournalView();
+
+ void showEventView();
+
+ void connectTodoView( KOTodoView *todoView );
+
+ void zoomInHorizontally();
+ void zoomOutHorizontally();
+ void zoomInVertically();
+ void zoomOutVertically();
+
+ void resourcesChanged();
+
+ private slots:
+ void currentAgendaViewTabChanged( QWidget* );
+ private:
+ QWidget* widgetForView( KOrg::BaseView* ) const;
+ CalendarView *mMainView;
+
+ KOAgendaView *mAgendaView;
+ MultiAgendaView *mAgendaSideBySideView;
+ KOListView *mListView;
+ KOMonthView *mMonthView;
+ KOTodoView *mTodoView;
+ KOWhatsNextView *mWhatsNextView;
+ KOJournalView *mJournalView;
+ KOTimelineView *mTimelineView;
+
+ KOrg::BaseView *mCurrentView;
+
+ KOrg::BaseView *mLastEventView;
+ QTabWidget *mAgendaViewTabs;
+};
+
+#endif