mirror of
https://github.com/kichikuou/xsystem35-sdl2.git
synced 2026-09-27 09:23:11 +03:00
By default it is disabled and normal weight is always used. Issue: https://github.com/kichikuou/xsystem35-sdl2/issues/44
86 lines
2.5 KiB
C
86 lines
2.5 KiB
C
/*
|
|
* selection.h 選択
|
|
*
|
|
* Copyright (C) 1997-1998 Masaki Chikama (Wren) <chikama@kasumi.ipl.mech.nagoya-u.ac.jp>
|
|
* 1998- <masaki-c@is.aist-nara.ac.jp>
|
|
*
|
|
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
*/
|
|
/* $Id: selection.h,v 1.14 2002/05/07 21:43:53 chikama Exp $ */
|
|
|
|
#ifndef __SELECTION__
|
|
#define __SELECTION__
|
|
|
|
#include "portab.h"
|
|
#include "windowframe.h"
|
|
|
|
extern void sel_init();
|
|
extern void sel_reduce(int no);
|
|
extern int sel_getnumberof();
|
|
extern char *sel_gettext(int no);
|
|
extern void sel_goto(int no, int flag);
|
|
extern void sel_returengoto(int no, int flag);
|
|
extern void sel_setDefaultElement(int type);
|
|
extern void sel_setCallback(int type, int page, int adr);
|
|
extern int sel_getLastElement();
|
|
extern int sel_getRegistoredElementNumber();
|
|
extern int sel_getRegistoredElementWidth();
|
|
extern int sel_getRegistoredElement_strlen();
|
|
extern void sel_setFontSize(int size);
|
|
extern void sel_addElement(const char *str);
|
|
extern void sel_addRetValue(int val);
|
|
extern void sel_fixElement();
|
|
extern void sel_select();
|
|
|
|
struct _selection {
|
|
/* Window枠の種類 */
|
|
int WindowFrameType;
|
|
int FrameCgNoTop;
|
|
int FrameCgNoMid;
|
|
int FrameCgNoBot;
|
|
int Framedot;
|
|
|
|
/* メッセージフォントの大きさ */
|
|
int MsgFontSize;
|
|
|
|
/* 各種色 */
|
|
int MsgFontColor;
|
|
int WinFrameColor;
|
|
int WinBackgroundColor;
|
|
int WinElementEncloseColor;
|
|
int SelectedElementColor;
|
|
int WinBackgroundTransparent;
|
|
int EncloseType;
|
|
|
|
/* 選択したあとメッセージ領域を初期化するか */
|
|
boolean ClearMsgWindow;
|
|
|
|
/* 選択Windowの大きさの変更 */
|
|
boolean WinResizeWidth;
|
|
boolean WinResizeHeight;
|
|
|
|
/* 選択肢 Window */
|
|
int winno;
|
|
Bcom_WindowInfo *win; // points to wininfo[winno - 1]
|
|
Bcom_WindowInfo wininfo[SELWINMAX];
|
|
|
|
/* 選択肢を登録中 */
|
|
boolean in_setting;
|
|
};
|
|
typedef struct _selection sel_t;
|
|
|
|
#endif /* __SELECTION__ */
|