summaryrefslogtreecommitdiffabout
path: root/korganizer/koeventpopupmenu.cpp
blob: 81047c11e051b1df2e284e75bc66821999cc7a88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
/*
  This file is part of KOrganizer.
  Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org>

  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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, 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.
*/

#include <qcursor.h>
//Added by qt3to4:
#include <Q3ValueList>
#include <Q3PopupMenu>

#include <klocale.h>
#include <kdebug.h>
#include <kiconloader.h>

#include <libkcal/event.h>

#include "koeventpopupmenu.h"
#include "koprefs.h"

KOEventPopupMenu::KOEventPopupMenu(): Q3PopupMenu()
{
    mCurrentIncidence = 0;
    mHasAdditionalItems = false;

  
    mSingleOnlyItems.append( insertItem (i18n("&Show"),this,SLOT(popupShow())));
    mEditOnlyItems.append(insertItem (i18n("&Edit..."),this,SLOT(popupEdit())));
    mEditOnlyItems.append(insertItem (i18n("&Delete..."),
                                      this,SLOT(popupDelete())));
    mEditOnlyItems.append(insertItem (i18n("&Clone..."),
                                      this,SLOT(popupClone())));
    mEditOnlyItems.append(insertItem (i18n("&Move..."),
                                      this,SLOT(popupMove())));
#ifndef DESKTOP_VERSION
    mEditOnlyItems.append(insertItem (i18n("&Beam..."),
                                      this,SLOT(popupBeam())));
#endif
    mEditOnlyItems.append(insertItem (i18n("&Toggle Cancel"),
                                      this,SLOT(popupCancel())));
    isDisabled = false;  
    mCatPopup = new Q3PopupMenu ( this );
    mCatPopup->setCheckable (true);
    connect(mCatPopup,SIGNAL( aboutToShow ()), this ,SLOT( fillCatPopup()));
    connect(mCatPopup,SIGNAL(  activated ( int ) ), this ,SLOT( computeCatPopup( int )));
    mCalPopup = new Q3PopupMenu ( this );
    mCalPopup->setCheckable (true);
    connect(mCalPopup,SIGNAL( aboutToShow ()), this ,SLOT( fillCalPopup()));
    connect(mCalPopup,SIGNAL(  activated ( int ) ), this ,SLOT( computeCalPopup( int )));
    //mEditOnlyItems.append(insertItem (i18n("Categories"),mCatPopup ));
    //mEditOnlyItems.append(insertItem (i18n("Calendar"),mCalPopup ));
    insertItem (i18n("Categories"),mCatPopup );
    insertItem (i18n("Calendar"),mCalPopup );
    Q3ValueList<int>::Iterator it;
    for( it = mEditOnlyItems.begin(); it != mEditOnlyItems.end(); ++it ) {
        mSingleOnlyItems.append(*it);
    }

}
void KOEventPopupMenu::enableDefault( bool enable )
{
    isDisabled = !enable;
    Q3ValueList<int>::Iterator it;
    for( it = mSingleOnlyItems.begin(); it != mSingleOnlyItems.end(); ++it ) {
        setItemEnabled(*it,enable);
    }
}

void KOEventPopupMenu::fillCalPopup() // CAL
{
    mCalPopup->clear();
    if (!mCurrentIncidence) return;
    bool readO = mCurrentIncidence->isReadOnly()|| isDisabled;
    KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first();
    while ( kkf ) {
        int index = mCalPopup->insertItem( kkf->mName, kkf->mCalNumber);
        if ( kkf->mErrorOnLoad || kkf->isReadOnly || readO )
            mCalPopup->setItemEnabled( index, false );
        mCalPopup->setItemChecked (index, kkf->mCalNumber == mCurrentIncidence->calID());
        kkf = KOPrefs::instance()->mCalendars.next();
    }
}
void KOEventPopupMenu::computeCalPopup( int index ) // CAL
{
    if (!mCurrentIncidence) return;
    mCurrentIncidence->setCalID( index );
    emit categoryChanged( mCurrentIncidence );
}
void KOEventPopupMenu::fillCatPopup()
{
    mCatPopup->clear(); 
    if (!mCurrentIncidence) return;
    bool readO = mCurrentIncidence->isReadOnly() || isDisabled;
    QStringList checkedCategories = mCurrentIncidence->categories();
    int index = 0;
    for (QStringList::Iterator it = KOPrefs::instance()->mCustomCategories.begin ();
         it != KOPrefs::instance()->mCustomCategories.end ();
         ++it) {
        mCatPopup->insertItem (*it, index );
        if (checkedCategories.find (*it) != checkedCategories.end ()) {
            mCatPopup->setItemChecked (index, true);
        }
        if ( readO )
            mCatPopup->setItemEnabled( index, false );
        ++index;
    }
}
void KOEventPopupMenu::computeCatPopup( int index )
{ 
    if (!mCurrentIncidence) return;
    QStringList categories =  mCurrentIncidence->categories();
    QString colcat = categories.first();
    if (categories.find (KOPrefs::instance()->mCustomCategories[index]) != categories.end ())
        categories.remove (KOPrefs::instance()->mCustomCategories[index]);
    else
        categories.insert (categories.end(), KOPrefs::instance()->mCustomCategories[index]);
    categories.sort ();
    if ( !colcat.isEmpty() ) {
        if ( categories.find ( colcat ) != categories.end () ) {
            categories.remove( colcat );
            categories.prepend( colcat );
        }
    }
    mCurrentIncidence->setCategories( categories );
    emit categoryChanged( mCurrentIncidence );
}
void KOEventPopupMenu::showIncidencePopup(Incidence *incidence)
{
    if ( !incidence) return;
    mCurrentIncidence = incidence;
  
    if (mCurrentIncidence) {
        // Enable/Disabled menu items only valid for editable events.
        if ( !isDisabled  ) {
            Q3ValueList<int>::Iterator it;
            for( it = mEditOnlyItems.begin(); it != mEditOnlyItems.end(); ++it ) {
                setItemEnabled(*it,!mCurrentIncidence->isReadOnly());
            }
        }
        popup(QCursor::pos());
    }
}

void KOEventPopupMenu::addAdditionalItem(const QIcon &icon,const QString &text,
                                         const QObject *receiver, const char *member,
                                         bool editOnly)
{
    if (!mHasAdditionalItems) {
        mHasAdditionalItems = true;
        insertSeparator();
    }
    int id = insertItem(icon,text,receiver,member);
    if (editOnly) mEditOnlyItems.append(id);
}

void KOEventPopupMenu::popupShow()
{
    if (mCurrentIncidence) emit showIncidenceSignal(mCurrentIncidence);
}

void KOEventPopupMenu::popupEdit()
{
    if (mCurrentIncidence) emit editIncidenceSignal(mCurrentIncidence);
}

void KOEventPopupMenu::popupDelete()
{
    if (mCurrentIncidence) emit deleteIncidenceSignal(mCurrentIncidence);
}
void KOEventPopupMenu::popupClone()
{
    if (mCurrentIncidence) emit cloneIncidenceSignal(mCurrentIncidence);
}
void KOEventPopupMenu::popupCancel()
{
    if (mCurrentIncidence) emit cancelIncidenceSignal(mCurrentIncidence);
}
void KOEventPopupMenu::popupMove()
{
    if (mCurrentIncidence) emit moveIncidenceSignal(mCurrentIncidence);
}

void KOEventPopupMenu::popupBeam()
{
    if (mCurrentIncidence) emit beamIncidenceSignal(mCurrentIncidence);
}