~ubuntu-branches/ubuntu/precise/koffice/precise

« back to all changes in this revision

Viewing changes to kplato/kptviewlist.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-09-21 15:36:35 UTC
  • mfrom: (1.4.1 upstream) (60.2.11 maverick)
  • Revision ID: james.westby@ubuntu.com-20100921153635-6tejqkiro2u21ydi
Tags: 1:2.2.2-0ubuntu3
Add kubuntu_03_fix-crash-on-closing-sqlite-connection-2.2.2.diff and
kubuntu_04_support-large-memo-values-for-msaccess-2.2.2.diff as
recommended by upstream http://kexi-
project.org/wiki/wikiview/index.php@Kexi2.2_Patches.html#sqlite_stab
ility

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* This file is part of the KDE project
2
 
  Copyright (C) 2007 Dag Andersen <danders@get2net.dk>
 
2
  Copyright (C) 2007 - 2010 Dag Andersen <danders@get2net.dk>
3
3
 
4
4
  This library is free software; you can redistribute it and/or
5
5
  modify it under the terms of the GNU Library General Public
65
65
        ViewListItem( const QString &tag, const QStringList &strings, int type = ItemType_Category );
66
66
        ViewListItem( QTreeWidget *parent, const QString &tag, const QStringList &strings, int type = ItemType_Category );
67
67
        ViewListItem( QTreeWidgetItem *parent, const QString &tag, const QStringList &strings, int type = ItemType_Category );
 
68
 
68
69
        void setView( ViewBase *view );
69
70
        ViewBase *view() const;
70
71
        void setDocument( KoDocument *doc );
159
160
    void activated( ViewListItem*, ViewListItem* );
160
161
    void createView();
161
162
    void viewListItemRemoved( ViewListItem *item );
162
 
    void viewListItemInserted( ViewListItem *item );
 
163
    void viewListItemInserted( ViewListItem *item, ViewListItem *parent, int index );
163
164
 
164
165
    void selectionChanged( ScheduleManager* );
165
166
 
166
167
    void updateViewInfo( ViewListItem *itm );
167
168
 
 
169
    void modified();
 
170
 
168
171
public slots:
169
172
    void setProject( Project *project );
170
173
    void setSelectedSchedule( ScheduleManager *sm );
 
174
    void setModified();
171
175
 
172
176
protected slots:
173
177
    void slotActivated( QTreeWidgetItem *item, QTreeWidgetItem *prev );
183
187
    void slotCurrentScheduleChanged( int );
184
188
    void slotScheduleManagerAdded( ScheduleManager* );
185
189
 
 
190
    void slotDialogFinished( int result );
 
191
 
186
192
protected:
187
193
    virtual void contextMenuEvent ( QContextMenuEvent *event );
188
194