summaryrefslogtreecommitdiffstats
path: root/kresources/lib/folderlistview.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:17:50 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:17:50 -0600
commitb363d2579af0a11b77e698aed2e1021c2233b644 (patch)
treef4a47b87354b7a6a3b266c8121bd8ddaeb7accaa /kresources/lib/folderlistview.h
parent61bddfe3a7226b18c68a76124b727c736f431688 (diff)
downloadtdepim-b363d2579af0a11b77e698aed2e1021c2233b644.tar.gz
tdepim-b363d2579af0a11b77e698aed2e1021c2233b644.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kresources/lib/folderlistview.h')
-rw-r--r--kresources/lib/folderlistview.h130
1 files changed, 0 insertions, 130 deletions
diff --git a/kresources/lib/folderlistview.h b/kresources/lib/folderlistview.h
deleted file mode 100644
index 32f01199..00000000
--- a/kresources/lib/folderlistview.h
+++ /dev/null
@@ -1,130 +0,0 @@
-/* This file is part of the KDE libraries
-
- Copyright (C) 2005 Reinhold Kainhofer <reinhold@kainhofer.com>
-
- Taken in large parts from the kate highlighting list view kateschema.h:
- Copyright (C) 2001-2003 Christoph Cullmann <cullmann@kde.org>
- Copyright (C) 2002, 2003 Anders Lund <anders.lund@lund.tdcadsl.dk>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License version 2 as published by the Free Software Foundation.
-
- This library 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
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#ifndef FOLDERLISTVIEW_H
-#define FOLDERLISTVIEW_H
-
-#include <klistview.h>
-#include "folderlister.h"
-
-class FolderListItem;
-class FolderListCaption;
-
-
-/*
- TQListView that automatically adds columns for FolderListItems for selecting
- the default destination and a slot to edit the destinations using the keyboard.
-*/
-class FolderListView : public KListView
-{
- Q_OBJECT
-
-
- friend class FolderListItem;
-
- public:
- /* mainly for readability */
- enum Property { FolderName, Event, Todo, Journal, Contact, All, Unknown, PROP_MAX };
-
- FolderListView( TQWidget *parent, const TQValueList<Property> &types = TQValueList<Property>() );
- ~FolderListView() {};
-
- /* Display a popupmenu for item i at the specified global position, eventually with a title,
- promoting the context name of that item */
- void showPopupMenu( FolderListItem *i, const TQPoint &globalPos );
- void emitChanged() { emit changed(); };
- void setEnabledTypes( const TQValueList<Property> &types );
-
- int columnForType( Property prop ) const { if ( mColumnMap.contains(prop) ) return mColumnMap[prop]; else return -1;}
- Property typeForColumn( int col ) const { if ( mTypeMap.contains( col ) ) return mTypeMap[col]; else return Unknown; }
-
- private slots:
- /* Display a popupmenu for item i at item position */
- void showPopupMenu( TQListViewItem *i );
- /* call item to change a property, or display a menu */
- void slotMousePressed( int, TQListViewItem*, const TQPoint&, int );
- /* asks item to change the property in q */
- void slotPopupHandler( int z );
-
- signals:
- void changed();
- private:
- TQValueList<Property> mTypes;
- TQMap<Property,int> mColumnMap;
- TQMap<int,Property> mTypeMap;
-};
-
-/*
- TQListViewItem subclass to display/edit a folder on a groupware server.
- Selection of default destinations will be done via radio items.
-*/
-class FolderListItem : public TQCheckListItem
-{
- typedef TQCheckListItem super;
- public:
- FolderListItem( FolderListItem *parent, const KPIM::FolderLister::Entry &folder )
- : TQCheckListItem( parent, folder.name, TQCheckListItem::CheckBoxController ),
- mFolder( folder ), mFolderListView( parent?(parent->folderListView()):0 )
- {
- setOn( mFolder.active );
- }
- FolderListItem( FolderListView *listView, const KPIM::FolderLister::Entry &folder )
- : TQCheckListItem( listView, folder.name,
- TQCheckListItem::CheckBoxController ), mFolder( folder ), mFolderListView( listView )
- {
- setOn( mFolder.active );
- }
-
- KPIM::FolderLister::Entry folder() const
- {
- return mFolder;
- }
-
- /* reimp */
-// int width ( const TQFontMetrics & fm, const TQListView * lv, int c ) const;
-
- bool typeSupported( FolderListView::Property prop );
- bool isDefault( FolderListView::Property prop );
- void setDefault( FolderListView::Property prop, bool def = true );
-
- /* calls changeProperty() if it makes sense considering pos. */
- void activate( int column, const TQPoint &localPos );
- /* Sets this item as default for property p a */
- void changeProperty( FolderListView::Property p );
-
- FolderListView *folderListView() const { return mFolderListView; }
-
- protected:
- /* reimp */
- void paintCell(TQPainter *p, const TQColorGroup& cg, int col, int width, int align);
-
- private:
- KPIM::FolderLister::Entry mFolder;
- bool mIsDefault[FolderListView::PROP_MAX];
- FolderListView *mFolderListView;
-};
-
-
-#endif
-
-// kate: space-indent on; indent-width 2; replace-tabs on;