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

« back to all changes in this revision

Viewing changes to kivio/kiviopart/tklib/tkcommon.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
 
#ifndef TKCOMMON_H
2
 
#define TKCOMMON_H
3
 
 
4
 
#include <qdom.h>
5
 
 
6
 
int XmlReadInt( const QDomElement &, const QString &, const int=0 );
7
 
void  XmlWriteInt( QDomElement &, const QString &, const int & );
8
 
 
9
 
uint XmlReadUInt( const QDomElement &, const QString &, const uint=0 );
10
 
void  XmlWriteUInt( QDomElement &, const QString &, const uint & );
11
 
 
12
 
double XmlReadDouble( const QDomElement &, const QString &, const double=0.0 );
13
 
void  XmlWriteDouble( QDomElement &, const QString &, const double & );
14
 
 
15
 
float XmlReadFloat( const QDomElement &, const QString &, const float=0.0 );
16
 
void  XmlWriteFloat( QDomElement &, const QString &, const float & );
17
 
 
18
 
QString XmlReadString( const QDomElement &, const QString &, const QString=QString::null );
19
 
void    XmlWriteString( QDomElement &,  const QString &, const QString & );
20
 
 
21
 
#endif
22