2015-09-25 21:37:19 +02:00
|
|
|
// File: fmessagebox.h
|
|
|
|
// Provides: class FMessageBox
|
|
|
|
//
|
|
|
|
// Inheritance diagram
|
|
|
|
// ═══════════════════
|
|
|
|
//
|
|
|
|
// ▕▔▔▔▔▔▔▔▔▔▏ ▕▔▔▔▔▔▔▔▔▔▏
|
|
|
|
// ▕ FObject ▏ ▕ FTerm ▏
|
|
|
|
// ▕▁▁▁▁▁▁▁▁▁▏ ▕▁▁▁▁▁▁▁▁▁▏
|
|
|
|
// ▲ ▲
|
|
|
|
// │ │
|
|
|
|
// └─────┬─────┘
|
|
|
|
// │
|
2016-10-11 04:57:36 +02:00
|
|
|
// ▕▔▔▔▔▔▔▔▔▏
|
|
|
|
// ▕ FVTerm ▏
|
|
|
|
// ▕▁▁▁▁▁▁▁▁▏
|
|
|
|
// ▲
|
|
|
|
// │
|
2015-09-25 21:37:19 +02:00
|
|
|
// ▕▔▔▔▔▔▔▔▔▔▏
|
|
|
|
// ▕ FWidget ▏
|
|
|
|
// ▕▁▁▁▁▁▁▁▁▁▏
|
|
|
|
// ▲
|
|
|
|
// │
|
|
|
|
// ▕▔▔▔▔▔▔▔▔▔▏
|
|
|
|
// ▕ FWindow ▏
|
|
|
|
// ▕▁▁▁▁▁▁▁▁▁▏
|
|
|
|
// ▲
|
|
|
|
// │
|
|
|
|
// ▕▔▔▔▔▔▔▔▔▔▏
|
|
|
|
// ▕ FDialog ▏
|
|
|
|
// ▕▁▁▁▁▁▁▁▁▁▏
|
|
|
|
// ▲
|
|
|
|
// │
|
|
|
|
// ▕▔▔▔▔▔▔▔▔▔▔▔▔▔▏
|
|
|
|
// ▕ FMessageBox ▏
|
|
|
|
// ▕▁▁▁▁▁▁▁▁▁▁▁▁▁▏
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2017-04-09 20:08:53 +02:00
|
|
|
#ifndef FMESSAGEBOX_H
|
|
|
|
#define FMESSAGEBOX_H
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
#include <cstring>
|
|
|
|
|
2017-09-17 21:32:46 +02:00
|
|
|
#include "final/fbutton.h"
|
|
|
|
#include "final/fdialog.h"
|
|
|
|
#include "final/fterm.h"
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// class FMessageBox
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
#pragma pack(push)
|
|
|
|
#pragma pack(1)
|
|
|
|
|
|
|
|
class FMessageBox : public FDialog
|
|
|
|
{
|
2017-09-11 03:06:02 +02:00
|
|
|
public:
|
|
|
|
// Enumeration
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
Reject = 0,
|
|
|
|
Ok = 1,
|
|
|
|
Cancel = 2,
|
|
|
|
Yes = 3,
|
|
|
|
No = 4,
|
|
|
|
Abort = 5,
|
|
|
|
Retry = 6,
|
|
|
|
Ignore = 7
|
|
|
|
};
|
|
|
|
|
|
|
|
// Constructors
|
|
|
|
explicit FMessageBox (FWidget* = 0);
|
|
|
|
FMessageBox (const FMessageBox&); // copy constructor
|
|
|
|
FMessageBox ( const FString&, const FString&
|
|
|
|
, int, int, int
|
|
|
|
, FWidget* = 0 );
|
|
|
|
// Destructor
|
|
|
|
~FMessageBox();
|
|
|
|
|
|
|
|
// Assignment operator (=)
|
|
|
|
FMessageBox& operator = (const FMessageBox&);
|
|
|
|
|
|
|
|
// Accessor
|
|
|
|
const char* getClassName() const;
|
|
|
|
const FString getTitlebarText() const;
|
|
|
|
const FString getHeadline() const;
|
|
|
|
const FString getText() const;
|
|
|
|
|
|
|
|
// Mutator
|
|
|
|
void setTitlebarText (const FString&);
|
|
|
|
void setHeadline (const FString&);
|
|
|
|
bool setCenterText(bool);
|
|
|
|
bool setCenterText();
|
|
|
|
bool unsetCenterText();
|
|
|
|
void setText (const FString&);
|
|
|
|
|
|
|
|
// Methods
|
|
|
|
static int info ( FWidget*
|
|
|
|
, const FString&
|
2016-11-02 00:37:58 +01:00
|
|
|
, const FString&
|
|
|
|
, int = FMessageBox::Ok
|
|
|
|
, int = 0
|
|
|
|
, int = 0 );
|
2017-09-11 03:06:02 +02:00
|
|
|
|
|
|
|
static int info ( FWidget*
|
|
|
|
, const FString&
|
|
|
|
, int
|
|
|
|
, int = FMessageBox::Ok
|
|
|
|
, int = 0
|
|
|
|
, int = 0 );
|
|
|
|
|
|
|
|
static int error ( FWidget*
|
|
|
|
, const FString&
|
|
|
|
, int = FMessageBox::Ok
|
|
|
|
, int = 0
|
|
|
|
, int = 0 );
|
|
|
|
protected:
|
|
|
|
// Method
|
|
|
|
void adjustSize();
|
|
|
|
|
|
|
|
// Callback method
|
|
|
|
void cb_processClick (FWidget*, data_ptr);
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Methods
|
|
|
|
void init (int, int, int);
|
|
|
|
void calculateDimensions();
|
|
|
|
virtual void draw();
|
|
|
|
void resizeButtons();
|
|
|
|
void adjustButtons();
|
|
|
|
|
|
|
|
// Data Members
|
|
|
|
FString headline_text;
|
|
|
|
FString text;
|
|
|
|
FString* text_components;
|
2017-09-20 16:56:20 +02:00
|
|
|
FStringList text_split;
|
2017-09-11 03:06:02 +02:00
|
|
|
uInt max_line_width;
|
|
|
|
bool center_text;
|
|
|
|
short emphasis_color;
|
|
|
|
uInt num_buttons;
|
|
|
|
uInt text_num_lines;
|
|
|
|
int button_digit[3];
|
|
|
|
FButton* button[3];
|
2015-05-23 13:35:12 +02:00
|
|
|
};
|
|
|
|
#pragma pack(pop)
|
|
|
|
|
|
|
|
|
|
|
|
// FMessageBox inline functions
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline const char* FMessageBox::getClassName() const
|
|
|
|
{ return "FMessageBox"; }
|
|
|
|
|
2015-09-22 04:18:20 +02:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline const FString FMessageBox::getTitlebarText() const
|
|
|
|
{ return FDialog::getText(); }
|
|
|
|
|
2015-05-23 13:35:12 +02:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline const FString FMessageBox::getHeadline() const
|
|
|
|
{ return headline_text; }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline const FString FMessageBox::getText() const
|
|
|
|
{ return text; }
|
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline void FMessageBox::setTitlebarText (const FString& txt)
|
|
|
|
{ return FDialog::setText(txt); }
|
|
|
|
|
2015-05-23 13:35:12 +02:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline bool FMessageBox::setCenterText(bool on)
|
2015-09-22 04:18:20 +02:00
|
|
|
{ return center_text = on; }
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline bool FMessageBox::setCenterText()
|
|
|
|
{ return setCenterText(true); }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline bool FMessageBox::unsetCenterText()
|
|
|
|
{ return setCenterText(false); }
|
|
|
|
|
2017-04-09 20:08:53 +02:00
|
|
|
#endif // FMESSAGEBOX_H
|