2009-04-24 23:34:47 +00:00
|
|
|
//this file is part of notepad++
|
|
|
|
//Copyright (C)2003 Don HO < donho@altern.org >
|
|
|
|
//
|
|
|
|
//This program is free software; you can redistribute it and/or
|
|
|
|
//modify it under the terms of the GNU General Public License
|
|
|
|
//as published by the Free Software Foundation; either
|
|
|
|
//version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
//This program 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 General Public License for more details.
|
|
|
|
//
|
|
|
|
//You should have received a copy of the GNU General Public License
|
|
|
|
//along with this program; if not, write to the Free Software
|
|
|
|
//Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
#ifndef SIZE_DLG_H
|
|
|
|
#define SIZE_DLG_H
|
|
|
|
|
|
|
|
const int DEFAULT_NB_NUMBER = 2;
|
|
|
|
class ValueDlg : public StaticDialog
|
|
|
|
{
|
|
|
|
public :
|
|
|
|
ValueDlg() : StaticDialog(), _nbNumber(DEFAULT_NB_NUMBER) {};
|
2009-09-04 00:10:01 +00:00
|
|
|
void init(HINSTANCE hInst, HWND parent, int valueToSet, const TCHAR *text);
|
|
|
|
int doDialog(POINT p, bool isRTL = false);
|
2009-04-24 23:34:47 +00:00
|
|
|
void setNBNumber(int nbNumber) {
|
|
|
|
if (nbNumber > 0)
|
|
|
|
_nbNumber = nbNumber;
|
|
|
|
};
|
2009-09-04 00:10:01 +00:00
|
|
|
int reSizeValueBox();
|
|
|
|
void destroy() {};
|
2009-04-24 23:34:47 +00:00
|
|
|
|
|
|
|
protected :
|
2009-09-04 00:10:01 +00:00
|
|
|
BOOL CALLBACK run_dlgProc(UINT Message, WPARAM wParam, LPARAM);
|
2009-04-24 23:34:47 +00:00
|
|
|
|
|
|
|
private :
|
|
|
|
int _nbNumber;
|
|
|
|
int _defaultValue;
|
2009-08-03 00:37:30 +00:00
|
|
|
generic_string _name;
|
2009-04-24 23:34:47 +00:00
|
|
|
POINT _p;
|
|
|
|
};
|
|
|
|
|
2009-12-13 23:54:02 +00:00
|
|
|
// 0 : sans fullscreen
|
|
|
|
// 1 : fullscreen
|
|
|
|
// 2 : postit
|
|
|
|
const int buttonStatus_nada = 0;
|
|
|
|
const int buttonStatus_fullscreen = 1;
|
|
|
|
const int buttonStatus_postit = 2;
|
|
|
|
|
|
|
|
class ButtonDlg : public StaticDialog
|
|
|
|
{
|
|
|
|
public :
|
|
|
|
ButtonDlg() : StaticDialog(), _buttonStatus(buttonStatus_nada) {};
|
|
|
|
void init(HINSTANCE hInst, HWND parent){
|
|
|
|
Window::init(hInst, parent);
|
|
|
|
};
|
|
|
|
|
|
|
|
void doDialog(bool isRTL = false);
|
|
|
|
void destroy() {};
|
|
|
|
int getButtonStatus() const {
|
|
|
|
return _buttonStatus;
|
|
|
|
};
|
|
|
|
void setButtonStatus(int buttonStatus) {
|
|
|
|
_buttonStatus = buttonStatus;
|
|
|
|
};
|
|
|
|
|
|
|
|
void display(bool toShow = true) const {
|
|
|
|
int cmdToShow = toShow?SW_SHOW:SW_HIDE;
|
|
|
|
if (!toShow)
|
|
|
|
{
|
|
|
|
cmdToShow = (_buttonStatus != buttonStatus_nada)?SW_SHOW:SW_HIDE;
|
|
|
|
}
|
|
|
|
::ShowWindow(_hSelf, cmdToShow);
|
|
|
|
};
|
|
|
|
|
|
|
|
protected :
|
|
|
|
BOOL CALLBACK run_dlgProc(UINT Message, WPARAM wParam, LPARAM);
|
|
|
|
int _buttonStatus;
|
|
|
|
|
|
|
|
};
|
2009-04-24 23:34:47 +00:00
|
|
|
#endif //TABSIZE_DLG_H
|