Menu

[5212b7]: / noteobj.h  Maximize  Restore  History

Download this file

41 lines (33 with data), 859 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef NOTEOBJ_H
#define NOTEOBJ_H
#include <qstring.h>
class NoteObj;
#include "xmlobj.h"
/*! \brief The text note belonging to one OrnamentedObj */
class NoteObj:public XMLObj
{
public:
NoteObj();
NoteObj(const QString&);
void operator= (const NoteObj &);
void copy (NoteObj);
void clear();
void setNote (const QString&);
void setNoteMasked (const QString&);
QString getNote() const;
QString getNoteASCII();
QString getNoteASCII(QString igdent, const int &width=0);
QString getNoteOpenDoc();
bool isRichText() const;
void setFontHint (const QString&);
QString getFontHint () const;
void setFilenameHint (const QString&);
QString getFilenameHint () const;
bool isEmpty();
QString saveToDir();
private:
QString note;
QString fonthint;
QString filenamehint;
};
#endif
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.