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

« back to all changes in this revision

Viewing changes to kivio/kiviopart/kivio_lineendsaction.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
 
/*
2
 
 * Kivio - Visual Modelling and Flowcharting
3
 
 * Copyright (C) 2000-2001 theKompany.com & Dave Marotti
4
 
 *
5
 
 * This program is free software; you can redistribute it and/or
6
 
 * modify it under the terms of the GNU General Public License
7
 
 * as published by the Free Software Foundation; either version 2
8
 
 * of the License, or (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 Free Software
17
 
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
 
 */
19
 
#ifndef KIVIO_LINEENDSACTION_H
20
 
#define KIVIO_LINEENDSACTION_H
21
 
 
22
 
#include "tkaction.h"
23
 
 
24
 
class LineEndsAction : public TKBaseSelectAction
25
 
{ Q_OBJECT
26
 
public:
27
 
  LineEndsAction( bool isRightEnds, QObject* parent, const char* name );
28
 
  virtual ~LineEndsAction();
29
 
 
30
 
protected:
31
 
  void initComboBox(TKComboBox*);
32
 
 
33
 
private:
34
 
  bool m_rightends;
35
 
};
36
 
 
37
 
#endif
38