mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
35 lines
519 B
C
35 lines
519 B
C
#ifndef _messages_h_
|
|
#define _messages_h_
|
|
|
|
struct MessageEditor : public WithMessageLayout<ParentCtrl> {
|
|
|
|
//RichEdit editor;
|
|
//ToolBar toolbar;
|
|
DropList fields ;
|
|
String filename;
|
|
|
|
void Load(const String& filename);
|
|
void OpenFile(const String& fn);
|
|
void Save();
|
|
void SaveAs();
|
|
|
|
void SetBar();
|
|
void MainBar(Bar& bar);
|
|
|
|
void OnInsertField() ;
|
|
void FillFields() ;
|
|
|
|
void CheckModify() ;
|
|
|
|
public:
|
|
typedef MessageEditor CLASSNAME;
|
|
|
|
MessageEditor();
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|