summaryrefslogtreecommitdiffstats
path: root/keduca/keducabuilder/kcontroladdedit.h
blob: fb867c2371dd96d20c43a2958d22462ec393a7f5 (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
/***************************************************************************
                          kcontroladdedit.h  -  description
                             -------------------
    begin                : Sun May 27 2001
    copyright            : (C) 2001 by Javier Campos
    email                : javi@asyris.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.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef KCONTROLADDEDIT_H
#define KCONTROLADDEDIT_H

#include "../libkeduca/fileread.h"
#include "kcontroladdeditbase.h"

// TQt forward declarations
class TQListViewItem;

/**Add or edit questions
 * This is the Wizard that allows adding and editing of
 * Questions (and corresponding possible answers) to the
 * KEduca Document.
 * This will be called from the Editor (class KEducaBuilder)
 *@author Javier Campos
 * @author Klas Kalass (2003)
 */

class KControlAddEdit : public KControlAddEditBase  {
    Q_OBJECT
  TQ_OBJECT

public:
    KControlAddEdit(TQWidget *tqparent = 0, const char *name = 0, bool modal = true, WFlags f = 0);
    ~KControlAddEdit();
    /** Init keducaFile pointer and EditMode */
    void init(FileRead *keducaFile, bool editMode);
    /** show current Page */
    void showPage(TQWidget *page);

private:

    // Private methods

    /** Init graphical interface */
//  void initGUI();
    /** Fill page of current record */
    void fillPage();
    /** Add question with form data */
    void addQuestion();
    /** Write config settings */
    void configWrite();
    /** Read config settings */
    void configRead();
    void setCurrentAnswerItem(TQListViewItem *item);
    void resetAnswerValues();

    // Private attributes
    /** Pointer to keduca of kcontrol page */
    FileRead *_keducaFile;
    /** The currently selected answer item, important for editing of the answer*/
    TQListViewItem *_currentAnswerItem;
    /** Is a edit modify? */
    bool _editMode;

private slots:
    /** Accept changes */
    void accept();
    /** An Answer has been selected */
    void slotAnswerSelected(TQListViewItem *item);
    /** Remove answer */
    void slotRemoveAnswer();
    /** Button insert */
    void slotAddAnswer();
    /** Button Down */
    void slotMoveDownAnswer();
    /** Button Up */
    void slotMoveUpAnswer();
    /** Question or Answer data changed */
    void slotDataChanged();
    /** Preview image */
    void slotPreviewImage( const TQString & );
    /** Change question type */
    void slotQuestionTypeChanged( int index );
};

#endif