~ubuntu-branches/ubuntu/oneiric/kdepim/oneiric-updates

« back to all changes in this revision

Viewing changes to kmail/colorlistbox.h

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2011-06-28 19:33:24 UTC
  • mfrom: (0.2.13) (0.1.13 sid)
  • Revision ID: package-import@ubuntu.com-20110628193324-8yvjs8sdv9rdoo6c
Tags: 4:4.7.0-0ubuntu1
* New upstream release
  - update install files
  - add missing kdepim-doc package to control file
  - Fix Vcs lines
  - kontact breaks/replaces korganizer << 4:4.6.80
  - tighten the dependency of kdepim-dev on libkdepim4 to fix lintian error

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *   This file is part of libkdepim.
 
3
 *
 
4
 *   Copyright (C) 2000 Espen Sand, espen@kde.org
 
5
 *   Copyright (C) 2007 Mathias Soeken, msoeken@tzi.de
 
6
 *
 
7
 *   This program is free software; you can redistribute it and/or modify
 
8
 *   it under the terms of the GNU General Public License as published by
 
9
 *   the Free Software Foundation; either version 2 of the License, or
 
10
 *   (at your option) any later version.
 
11
 *
 
12
 *   This program is distributed in the hope that it will be useful,
 
13
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 *   GNU General Public License for more details.
 
16
 *
 
17
 *   You should have received a copy of the GNU General Public License along
 
18
 *   with this program; if not, write to the Free Software Foundation, Inc.,
 
19
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
20
 *
 
21
 */
 
22
 
 
23
#ifndef COLORLISTBOX_H
 
24
#define COLORLISTBOX_H
 
25
 
 
26
#include <QDragEnterEvent>
 
27
#include <QDragLeaveEvent>
 
28
#include <QDragMoveEvent>
 
29
#include <QDropEvent>
 
30
#include <QTreeWidget>
 
31
 
 
32
class ColorListBox : public QTreeWidget
 
33
{
 
34
  Q_OBJECT
 
35
 
 
36
  public:
 
37
    ColorListBox( QWidget *parent=0 );
 
38
    void addColor( const QString& text, const QColor& color=Qt::black );
 
39
    void setColor( int index, const QColor &color );
 
40
    // like setColor, but does not emit changed()
 
41
    void setColorSilently( int index, const QColor &color );
 
42
    QColor color( int index ) const;
 
43
  signals:
 
44
    void changed();
 
45
 
 
46
  protected:
 
47
    void dragEnterEvent( QDragEnterEvent *e );
 
48
    void dragLeaveEvent( QDragLeaveEvent *e );
 
49
    void dragMoveEvent( QDragMoveEvent *e );
 
50
    void dropEvent( QDropEvent *e );
 
51
 
 
52
  private slots:
 
53
    void newColor( const QModelIndex& index );
 
54
 
 
55
  private:
 
56
    QTreeWidgetItem* mCurrentOnDragEnter;
 
57
 
 
58
};
 
59
 
 
60
#endif