summaryrefslogtreecommitdiffstats
path: root/kvoctrain/kvoctrain/docprop-dialogs/LessOptPage.h
blob: 9116e179b1e4282189d6cf74ce7cbdbaca1ccd89 (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
/***************************************************************************

                   lesson properties dialog page

    -----------------------------------------------------------------------

    begin          : Thu Jun 3 22:03:50 1999

    copyright      : (C) 1999-2001 Ewald Arnold <kvoctrain@ewald-arnold.de>
                     (C) 2001 The KDE-EDU team
                     (C) 2005 Peter Hedlund <peter.hedlund@kdemail.net>

    -----------------------------------------------------------------------

 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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.                                   * 
 *                                                                         *
 ***************************************************************************/

#ifndef LessOptPage_included
#define LessOptPage_included

#include "LessOptPageForm.h"

#include <vector>
using namespace std;

class kvoctrainDoc;
class QComboBox;

class LessOptPage : public LessOptPageForm
{
    Q_OBJECT

public:

  LessOptPage
  (
    TQComboBox     *lessons,
    kvoctrainDoc  *doc,
    TQWidget       *parent = NULL,
    const char    *name = NULL
  );

  void getLesson (TQComboBox *ret_lesson, vector<int>& ret_Index);

  static void cleanUnused(kvoctrainDoc *doc,
                          const TQComboBox *lessons,
                          const vector<int> &lessonIndex,
                          int old_lessons,
                          vector<int> &lessons_in_use);

protected:
  void updateListBox(int start);

protected slots:

  void slotDeleteLesson();
  void slotNewLesson();
  void slotLessonChosen(int);
  void slotModifyLesson();
  void slotCleanup();

private:
  kvoctrainDoc  *doc;
  int            act_lesson;
  vector<int>    lessonIndex; // contains indices of lesson on exec()
                              // negative values are new lessons
};
#endif // LessOptPage_included