~ubuntu-branches/ubuntu/precise/kbibtex/precise

« back to all changes in this revision

Viewing changes to src/gui/field/fieldlineedit.h

  • Committer: Package Import Robot
  • Author(s): Michael Hanke
  • Date: 2011-07-18 09:29:48 UTC
  • mfrom: (1.1.6) (2.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20110718092948-ksxjmg7kdfamolmg
Tags: 0.3-1
* First upstream release for KDE4 (Closes: #634255). A number of search
  engines are still missing, in comparison to the 0.2 series.
* Bumped Standards-Version to 3.9.2, no changes necessary.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
*   Copyright (C) 2004-2010 by Thomas Fischer                             *
 
3
*   fischer@unix-ag.uni-kl.de                                             *
 
4
*                                                                         *
 
5
*   This program is free software; you can redistribute it and/or modify  *
 
6
*   it under the terms of the GNU General Public License as published by  *
 
7
*   the Free Software Foundation; either version 2 of the License, or     *
 
8
*   (at your option) any later version.                                   *
 
9
*                                                                         *
 
10
*   This program is distributed in the hope that it will be useful,       *
 
11
*   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
*   GNU General Public License for more details.                          *
 
14
*                                                                         *
 
15
*   You should have received a copy of the GNU General Public License     *
 
16
*   along with this program; if not, write to the                         *
 
17
*   Free Software Foundation, Inc.,                                       *
 
18
*   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 
19
***************************************************************************/
 
20
#ifndef KBIBTEX_GUI_FIELDLINEEDIT_H
 
21
#define KBIBTEX_GUI_FIELDLINEEDIT_H
 
22
 
 
23
#include <kbibtexgui_export.h>
 
24
 
 
25
#include <KIcon>
 
26
 
 
27
#include <value.h>
 
28
#include <menulineedit.h>
 
29
#include <kbibtexnamespace.h>
 
30
 
 
31
class QMenu;
 
32
class QSignalMapper;
 
33
 
 
34
/**
 
35
@author Thomas Fischer
 
36
*/
 
37
class KBIBTEXGUI_EXPORT FieldLineEdit : public MenuLineEdit
 
38
{
 
39
    Q_OBJECT
 
40
 
 
41
public:
 
42
    FieldLineEdit(KBibTeX::TypeFlag preferredTypeFlag, KBibTeX::TypeFlags typeFlags, bool isMultiLine = false, QWidget *parent = NULL);
 
43
 
 
44
    bool reset(const Value& value);
 
45
    bool apply(Value& value) const;
 
46
    virtual void setReadOnly(bool);
 
47
 
 
48
    void setFile(const File *file);
 
49
 
 
50
private:
 
51
    bool m_incompleteRepresentation;
 
52
 
 
53
 
 
54
    KBibTeX::TypeFlag typeFlag();
 
55
    KBibTeX::TypeFlag setTypeFlag(KBibTeX::TypeFlag typeFlag);
 
56
 
 
57
    void setupMenu();
 
58
    void updateGUI();
 
59
 
 
60
    class FieldLineEditPrivate;
 
61
    FieldLineEdit::FieldLineEditPrivate *d;
 
62
 
 
63
private slots:
 
64
    void slotTypeChanged(int);
 
65
    void slotTextChanged(const QString&);
 
66
    void slotOpenUrl();
 
67
};
 
68
 
 
69
#endif // KBIBTEX_GUI_FIELDLINEEDIT_H