2015-09-25 21:37:19 +02:00
|
|
|
// File: fdialog.h
|
|
|
|
// Provides: class FDialog
|
|
|
|
//
|
|
|
|
// Inheritance diagram
|
|
|
|
// ═══════════════════
|
|
|
|
//
|
|
|
|
// ▕▔▔▔▔▔▔▔▔▔▏ ▕▔▔▔▔▔▔▔▔▔▏
|
|
|
|
// ▕ FObject ▏ ▕ FTerm ▏
|
|
|
|
// ▕▁▁▁▁▁▁▁▁▁▏ ▕▁▁▁▁▁▁▁▁▁▏
|
|
|
|
// ▲ ▲
|
|
|
|
// │ │
|
|
|
|
// └─────┬─────┘
|
|
|
|
// │
|
2016-10-11 04:57:36 +02:00
|
|
|
// ▕▔▔▔▔▔▔▔▔▏
|
|
|
|
// ▕ FVTerm ▏
|
|
|
|
// ▕▁▁▁▁▁▁▁▁▏
|
|
|
|
// ▲
|
|
|
|
// │
|
2015-09-25 21:37:19 +02:00
|
|
|
// ▕▔▔▔▔▔▔▔▔▔▏
|
|
|
|
// ▕ FWidget ▏
|
|
|
|
// ▕▁▁▁▁▁▁▁▁▁▏
|
|
|
|
// ▲
|
|
|
|
// │
|
|
|
|
// ▕▔▔▔▔▔▔▔▔▔▏
|
|
|
|
// ▕ FWindow ▏
|
|
|
|
// ▕▁▁▁▁▁▁▁▁▁▏
|
|
|
|
// ▲
|
|
|
|
// │
|
|
|
|
// ▕▔▔▔▔▔▔▔▔▔▏
|
|
|
|
// ▕ FDialog ▏
|
|
|
|
// ▕▁▁▁▁▁▁▁▁▁▏
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
#ifndef _FDIALOG_H
|
|
|
|
#define _FDIALOG_H
|
|
|
|
|
2016-06-12 23:06:58 +02:00
|
|
|
#include "fmenu.h"
|
|
|
|
#include "fmenuitem.h"
|
2016-10-01 23:18:49 +02:00
|
|
|
#include "ftooltip.h"
|
2015-05-23 13:35:12 +02:00
|
|
|
#include "fwindow.h"
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// class FDialog
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
#pragma pack(push)
|
|
|
|
#pragma pack(1)
|
|
|
|
|
|
|
|
class FDialog : public FWindow
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum DialogCode
|
|
|
|
{
|
|
|
|
Reject = 0,
|
|
|
|
Accept = 1
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2016-07-25 23:50:57 +02:00
|
|
|
FString tb_text; // title bar text
|
2016-07-14 23:55:22 +02:00
|
|
|
int result_code;
|
2016-09-11 16:48:39 +02:00
|
|
|
bool zoom_button_pressed;
|
|
|
|
bool zoom_button_active;
|
2016-09-27 00:46:05 +02:00
|
|
|
FPoint titlebar_click_pos;
|
2016-09-29 04:29:12 +02:00
|
|
|
FPoint resize_click_pos;
|
2016-09-30 04:55:28 +02:00
|
|
|
FRect save_geometry; // required by move/size by keyboard
|
2016-07-14 23:55:22 +02:00
|
|
|
FMenu* dialog_menu;
|
|
|
|
FMenuItem* dgl_menuitem;
|
2016-09-30 04:55:28 +02:00
|
|
|
FMenuItem* move_size_item;
|
2016-09-11 16:48:39 +02:00
|
|
|
FMenuItem* zoom_item;
|
|
|
|
FMenuItem* close_item;
|
2016-10-01 23:18:49 +02:00
|
|
|
FToolTip* tooltip;
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
private:
|
2016-09-30 04:55:28 +02:00
|
|
|
// Disable copy constructor
|
2015-05-23 13:35:12 +02:00
|
|
|
FDialog (const FDialog&);
|
2016-09-30 04:55:28 +02:00
|
|
|
// Disable assignment operator (=)
|
2015-05-23 13:35:12 +02:00
|
|
|
FDialog& operator = (const FDialog&);
|
2016-09-30 04:55:28 +02:00
|
|
|
|
2016-07-14 23:55:22 +02:00
|
|
|
void init();
|
2016-09-25 23:53:48 +02:00
|
|
|
// make every drawBorder from FWidget available
|
|
|
|
using FWidget::drawBorder;
|
|
|
|
virtual void drawBorder();
|
2016-07-14 23:55:22 +02:00
|
|
|
void drawTitleBar();
|
|
|
|
void leaveMenu();
|
2016-09-25 23:53:48 +02:00
|
|
|
void openMenu();
|
|
|
|
void selectFirstMenuItem();
|
|
|
|
void setZoomItem();
|
2016-09-30 04:55:28 +02:00
|
|
|
|
|
|
|
// Callback methods
|
|
|
|
void cb_move (FWidget*, void*);
|
2016-09-11 16:48:39 +02:00
|
|
|
void cb_zoom (FWidget*, void*);
|
2016-07-14 23:55:22 +02:00
|
|
|
void cb_close (FWidget*, void*);
|
2016-09-30 04:55:28 +02:00
|
|
|
|
2016-07-14 23:55:22 +02:00
|
|
|
static void addDialog (FWidget*);
|
|
|
|
static void delDialog (FWidget*);
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void done (int);
|
|
|
|
virtual void draw();
|
|
|
|
virtual void onShow (FShowEvent*);
|
|
|
|
virtual void onHide (FHideEvent*);
|
|
|
|
virtual void onClose (FCloseEvent*);
|
|
|
|
|
|
|
|
public:
|
2016-09-30 04:55:28 +02:00
|
|
|
// Constructors
|
|
|
|
explicit FDialog (FWidget* = 0);
|
|
|
|
FDialog (const FString&, FWidget* = 0);
|
|
|
|
// Destructor
|
|
|
|
virtual ~FDialog();
|
|
|
|
|
2015-05-23 13:35:12 +02:00
|
|
|
virtual const char* getClassName() const;
|
|
|
|
|
2016-09-30 04:55:28 +02:00
|
|
|
// Event handlers
|
2015-05-23 13:35:12 +02:00
|
|
|
void onKeyPress (FKeyEvent*);
|
|
|
|
void onMouseDown (FMouseEvent*);
|
|
|
|
void onMouseUp (FMouseEvent*);
|
|
|
|
void onMouseMove (FMouseEvent*);
|
|
|
|
void onMouseDoubleClick (FMouseEvent*);
|
2016-07-16 20:39:38 +02:00
|
|
|
void onAccel (FAccelEvent*);
|
2015-05-23 13:35:12 +02:00
|
|
|
void onWindowActive (FEvent*);
|
|
|
|
void onWindowInactive (FEvent*);
|
|
|
|
void onWindowRaised (FEvent*);
|
|
|
|
void onWindowLowered (FEvent*);
|
2016-09-30 04:55:28 +02:00
|
|
|
|
2016-07-25 23:50:57 +02:00
|
|
|
void activateDialog();
|
2015-05-23 13:35:12 +02:00
|
|
|
void drawDialogShadow();
|
|
|
|
void show();
|
|
|
|
void hide();
|
|
|
|
int exec();
|
2016-10-14 13:02:35 +02:00
|
|
|
void setPos (int, int, bool = true);
|
|
|
|
// make every setPos from FWindow available
|
|
|
|
using FWindow::setPos;
|
2015-05-23 13:35:12 +02:00
|
|
|
void move (int, int);
|
2016-10-14 13:02:35 +02:00
|
|
|
// make every move from FWindow available
|
|
|
|
using FWindow::move;
|
2016-09-29 04:29:12 +02:00
|
|
|
void setSize (int, int, bool = true);
|
2016-07-25 23:50:57 +02:00
|
|
|
|
2016-09-25 23:53:48 +02:00
|
|
|
bool setFocus (bool);
|
2015-05-23 13:35:12 +02:00
|
|
|
bool setFocus();
|
|
|
|
bool unsetFocus();
|
2016-09-25 23:53:48 +02:00
|
|
|
bool setDialogWidget (bool);
|
|
|
|
bool setDialogWidget();
|
|
|
|
bool unsetDialogWidget();
|
|
|
|
bool setModal (bool);
|
2015-05-23 13:35:12 +02:00
|
|
|
bool setModal();
|
|
|
|
bool unsetModal();
|
|
|
|
bool isModal();
|
2016-10-09 02:06:06 +02:00
|
|
|
bool setResizeable (bool);
|
|
|
|
// make every setResizeable from FWindow available
|
|
|
|
using FWindow::setResizeable;
|
2016-09-25 23:53:48 +02:00
|
|
|
bool setScrollable (bool);
|
2015-05-23 13:35:12 +02:00
|
|
|
bool setScrollable();
|
|
|
|
bool unsetScrollable();
|
|
|
|
bool isScrollable();
|
|
|
|
FString getText() const;
|
2015-09-22 04:18:20 +02:00
|
|
|
void setText (const FString&);
|
2016-06-13 22:44:15 +02:00
|
|
|
|
|
|
|
private:
|
2016-10-01 23:18:49 +02:00
|
|
|
// Friend function from FMenu
|
|
|
|
friend void FMenu::hideSuperMenus();
|
2015-05-23 13:35:12 +02:00
|
|
|
};
|
|
|
|
#pragma pack(pop)
|
|
|
|
|
|
|
|
// FDialog inline functions
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline const char* FDialog::getClassName() const
|
|
|
|
{ return "FDialog"; }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline bool FDialog::setFocus()
|
|
|
|
{ return setFocus(true); }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline bool FDialog::unsetFocus()
|
|
|
|
{ return setFocus(false); }
|
|
|
|
|
2016-09-25 23:53:48 +02:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline bool FDialog::setDialogWidget()
|
|
|
|
{ return setDialogWidget(true); }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline bool FDialog::unsetDialogWidget()
|
|
|
|
{ return setDialogWidget(false); }
|
|
|
|
|
2015-05-23 13:35:12 +02:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline bool FDialog::setModal()
|
|
|
|
{ return setModal(true); }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline bool FDialog::unsetModal()
|
|
|
|
{ return setModal(false); }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline bool FDialog::isModal()
|
2016-01-24 14:53:09 +01:00
|
|
|
{ return ((flags & fc::modal) != 0); }
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline bool FDialog::setScrollable()
|
|
|
|
{ return setScrollable(true); }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline bool FDialog::unsetScrollable()
|
|
|
|
{ return setScrollable(false); }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline bool FDialog::isScrollable()
|
2016-01-24 14:53:09 +01:00
|
|
|
{ return ((flags & fc::scrollable) != 0); }
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2015-09-22 04:18:20 +02:00
|
|
|
inline FString FDialog::getText() const
|
|
|
|
{ return tb_text; }
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2015-09-22 04:18:20 +02:00
|
|
|
inline void FDialog::setText (const FString& txt)
|
|
|
|
{ tb_text = txt; }
|
|
|
|
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
#endif // _FDIALOG_H
|