~ubuntu-branches/ubuntu/breezy/koffice/breezy

« back to all changes in this revision

Viewing changes to kontour/HelplineDialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Ben Burton
  • Date: 2004-05-09 11:33:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040509113300-vfrdadqsvjfuhn3b
Tags: 1:1.3.1-1
* New upstream bugfix release.
* Built against newer imagemagick (closes: #246623).
* Made koffice-libs/kformula recommend/depend on latex-xft-fonts, which
  provides mathematical fonts that the formula editor can use.  Also
  patched the kformula part to make these fonts the default.
* Changed kword menu hint from "WordProcessors" to "Word processors"
  (closes: #246209).
* Spellchecker configuration is now fixed (closes: #221256, #227568).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- C++ -*-
2
 
 
3
 
  $Id: HelplineDialog.h,v 1.6 2000/07/31 21:00:47 wtrobin Exp $
4
 
 
5
 
  This file is part of KIllustrator.
6
 
  Copyright (C) 1998 Kai-Uwe Sattler (kus@iti.cs.uni-magdeburg.de)
7
 
 
8
 
  This program is free software; you can redistribute it and/or modify
9
 
  it under the terms of the GNU Library General Public License as
10
 
  published by
11
 
  the Free Software Foundation; either version 2 of the License, or
12
 
  (at your option) any later version.
13
 
 
14
 
  This program is distributed in the hope that it will be useful,
15
 
  but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 
  GNU General Public License for more details.
18
 
 
19
 
  You should have received a copy of the GNU Library General Public License
20
 
  along with this program; if not, write to the Free Software
21
 
  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22
 
 
23
 
*/
24
 
 
25
 
#ifndef HelplineDialog_h_
26
 
#define HelplineDialog_h_
27
 
 
28
 
#include <qvaluelist.h>
29
 
#include <kdialogbase.h>
30
 
 
31
 
class Canvas;
32
 
class UnitBox;
33
 
class QListBox;
34
 
 
35
 
class HelplineDialog : public KDialogBase {
36
 
  Q_OBJECT
37
 
public:
38
 
  HelplineDialog (Canvas* canvas, QWidget* parent = 0L,
39
 
                  const char* name = 0L);
40
 
 
41
 
  static void setup (Canvas *c);
42
 
 
43
 
protected:
44
 
  void createHorizLineWidget (QWidget* parent);
45
 
  void createVertLineWidget (QWidget* parent);
46
 
 
47
 
private slots:
48
 
  void applyPressed ();
49
 
 
50
 
  void addHorizLine ();
51
 
  void updateHorizLine ();
52
 
  void deleteHorizLine ();
53
 
  void horizLineSelected (int idx);
54
 
 
55
 
  void addVertLine ();
56
 
  void updateVertLine ();
57
 
  void deleteVertLine ();
58
 
  void vertLineSelected (int idx);
59
 
 
60
 
private:
61
 
  void initLists ();
62
 
 
63
 
  Canvas *canvas;
64
 
  UnitBox *horizValue, *vertValue;
65
 
  QListBox *horizList, *vertList;
66
 
  QValueList<float> horizLines, vertLines;
67
 
};
68
 
 
69
 
#endif