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

« back to all changes in this revision

Viewing changes to kword/mailmerge_actions.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
/* This file is part of the KDE project
 
2
  
 
3
   Copyright (C) 2002 Joseph Wenninger <jowenn@kde.org>
 
4
 
 
5
   Large parts are taken from kdebase/konqueror/konq_actions.*  
 
6
   Copyright (C) 2000 Simon Hausmann <hausmann@kde.org>
 
7
 
 
8
   This library is free software; you can redistribute it and/or
 
9
   modify it under the terms of the GNU Library General Public
 
10
   License as published by the Free Software Foundation; either
 
11
   version 2 of the License, or (at your option) any later version.
 
12
 
 
13
   This library is distributed in the hope that it will be useful,
 
14
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
   Library General Public License for more details.
 
17
 
 
18
   You should have received a copy of the GNU Library General Public License
 
19
   along with this library; see the file COPYING.LIB.  If not, write to
 
20
   the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
21
   Boston, MA 02111-1307, USA.
 
22
*/
 
23
 
 
24
#ifndef _MAILMERGE_ACTIONS_
 
25
#define _MAILMERGE_ACTIONS_
 
26
 
 
27
#include <kaction.h>
 
28
#include <qtoolbutton.h>
 
29
 
 
30
class KWMailMergeLabelAction : public KAction
 
31
{
 
32
  Q_OBJECT
 
33
public:
 
34
  KWMailMergeLabelAction( const QString &text, int accel,
 
35
                    QObject* receiver, const char* slot, QObject *parent = 0, const char *name = 0 );
 
36
 
 
37
  virtual int plug( QWidget *widget, int index = -1 );
 
38
  virtual void unplug( QWidget *widget );
 
39
  QToolButton * label() { return m_label; }
 
40
private:
 
41
  QToolButton * m_label;
 
42
};
 
43
 
 
44
#endif