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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
/********************************************************************************
* *
* I n p u t D i a l o g B o x *
* *
*********************************************************************************
* Copyright (C) 2000,2022 by Jeroen van der Zijp. All Rights Reserved. *
*********************************************************************************
* This library is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License as published by *
* the Free Software Foundation; either version 3 of the License, or *
* (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/> *
********************************************************************************/
#ifndef FXINPUTDIALOG_H
#define FXINPUTDIALOG_H
#ifndef FXDIALOGBOX_H
#include "FXDialogBox.h"
#endif
namespace FX {
/// Input dialog options
enum {
INPUTDIALOG_STRING = 0, /// Ask for a string
INPUTDIALOG_INTEGER = 0x02000000, /// Ask for an integer number
INPUTDIALOG_REAL = 0x04000000, /// Ask for a real number
INPUTDIALOG_PASSWORD = 0x08000000 /// Do not reveal key-in
};
class FXTextField;
/**
* An Input Dialog is a simple dialog which is used
* to obtain a text string, integer, or real number from the user.
* A password mode allows the key-in to remain hidden.
*/
class FXAPI FXInputDialog : public FXDialogBox {
FXDECLARE(FXInputDialog)
protected:
FXTextField *input; // Text field widget
FXdouble limlo; // Lower limit
FXdouble limhi; // Upper limit
protected:
FXInputDialog(){}
private:
FXInputDialog(const FXInputDialog&);
FXInputDialog &operator=(const FXInputDialog&);
virtual void initialize(const FXString& text,FXIcon* icon);
public:
long onCmdAccept(FXObject*,FXSelector,void*);
public:
/// Construct input dialog box with given caption, icon, and prompt text
FXInputDialog(FXWindow* owner,const FXString& caption,const FXString& label,FXIcon* icon=nullptr,FXuint opts=INPUTDIALOG_STRING,FXint x=0,FXint y=0,FXint w=0,FXint h=0);
/// Construct free floating input dialog box with given caption, icon, and prompt text
FXInputDialog(FXApp* app,const FXString& caption,const FXString& label,FXIcon* icon=nullptr,FXuint opts=INPUTDIALOG_STRING,FXint x=0,FXint y=0,FXint w=0,FXint h=0);
/// Get input string
FXString getText() const;
/// Set input string
void setText(const FXString& text);
/// Change number of visible columns of text
void setNumColumns(FXint num);
/// Return number of visible columns of text
FXint getNumColumns() const;
/// Change limits
void setLimits(FXdouble lo,FXdouble hi){ limlo=lo; limhi=hi; }
/// Return limits
void getLimits(FXdouble& lo,FXdouble& hi){ lo=limlo; hi=limhi; }
/// Run modal invocation of the dialog
virtual FXuint execute(FXuint placement=PLACEMENT_CURSOR);
/**
* Prompt for a string, start with the initial value.
* Return true if the new value is accepted, and false otherwise.
*/
static FXbool getString(FXString& result,FXWindow* owner,const FXString& caption,const FXString& label,FXIcon* icon=nullptr);
/**
* Prompt for a string, in free floating window.
*/
static FXbool getString(FXString& result,FXApp* app,const FXString& caption,const FXString& label,FXIcon* icon=nullptr);
/**
* Prompt for an integer number, start with the given initial value.
* Return true if the new value is accepted, and false otherwise.
* The input is constrained between lo and hi.
*/
static FXbool getInteger(FXint& result,FXWindow* owner,const FXString& caption,const FXString& label,FXIcon* icon=nullptr,FXint lo=-2147483647,FXint hi=2147483647);
/**
* Prompt for a integer number, in free floating window.
*/
static FXbool getInteger(FXint& result,FXApp* app,const FXString& caption,const FXString& label,FXIcon* icon=nullptr,FXint lo=-2147483647,FXint hi=2147483647);
/**
* Prompt for an real number, start with the given initial value.
* Return true if the new value is accepted, and false otherwise.
* The input is constrained between lo and hi.
*/
static FXbool getReal(FXdouble& result,FXWindow* owner,const FXString& caption,const FXString& label,FXIcon* icon=nullptr,FXdouble lo=-1.797693134862315e+308,FXdouble hi=1.797693134862315e+308);
/**
* Prompt for a real number, in free floating window.
*/
static FXbool getReal(FXdouble& result,FXApp* app,const FXString& caption,const FXString& label,FXIcon* icon=nullptr,FXdouble lo=-1.797693134862315e+308,FXdouble hi=1.797693134862315e+308);
};
}
#endif
|