~ubuntu-branches/debian/sid/scribus/sid

« back to all changes in this revision

Viewing changes to scribus/plugins/short-words/version.h

  • Committer: Bazaar Package Importer
  • Author(s): Oleksandr Moskalenko
  • Date: 2008-07-02 13:42:07 UTC
  • mto: (4.1.1 sid) (1.2.1) (20.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20080702134207-h9h384v0wxjmaf8y
Tags: upstream-1.3.3.12.dfsg
ImportĀ upstreamĀ versionĀ 1.3.3.12.dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
For general Scribus (>=1.3.2) copyright and licensing information please refer
 
3
to the COPYING file provided with the program. Following this notice may exist
 
4
a copyright and/or license notice that predates the release of Scribus 1.3.2
 
5
for which a new license (GPL+exception) is in place.
 
6
*/
 
7
/* \brief This is the Scribus Short Words various constants and preprocessor
 
8
definitions. There should be all SPACEs defined (unbreak, em, en etc.)
 
9
 
 
10
This code is based on the Scribus-Vlna plug in rewritten for
 
11
international use.
 
12
 
 
13
2004 Petr Vanek <petr@yarpen.cz>
 
14
 
 
15
This program is free software - see LICENSE file in the distribution
 
16
or documentation
 
17
*/
 
18
 
 
19
#ifndef _SCRIBUS_SHORTVER_H_
 
20
#define _SCRIBUS_SHORTVER_H_
 
21
 
 
22
#define RC_PATH QDir::convertSeparators( ScPaths::instance().shareDir() + "/plugins/scribus-short-words.rc")
 
23
#define RC_PATH_USR QDir::homeDirPath() + QDir::convertSeparators("/.scribus/scribus-short-words.rc")
 
24
 
 
25
#define UNBREAKABLE_SPACE QString(QChar(29))
 
26
#define SPACE QChar(' ')
 
27
 
 
28
#endif