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 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
|
/*
* ion/query/input.c
*
* Copyright (c) Tuomo Valkonen 1999-2004.
*
* Ion 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 2.1 of the License, or
* (at your option) any later version.
*/
#include <ioncore/common.h>
#include <ioncore/window.h>
#include <ioncore/global.h>
#include <ioncore/regbind.h>
#include <ioncore/defer.h>
#include "inputp.h"
/*{{{ Dynfuns */
/*EXTL_DOC
* Scroll input \var{input} text contents up.
*/
EXTL_EXPORT_MEMBER
void input_scrollup(WInput *input)
{
CALL_DYN(input_scrollup, input, (input));
}
/*EXTL_DOC
* Scroll input \var{input} text contents down.
*/
EXTL_EXPORT_MEMBER
void input_scrolldown(WInput *input)
{
CALL_DYN(input_scrolldown, input, (input));
}
void input_calc_size(WInput *input, WRectangle *geom)
{
CALL_DYN(input_calc_size, input, (input, geom));
}
const char *input_style(WInput *input)
{
const char *ret="input";
CALL_DYN_RET(ret, const char*, input_style, input, (input));
return ret;
}
/*}}}*/
/*{{{ Resize and draw config update */
void input_refit(WInput *input)
{
WRectangle geom=input->max_geom;
input_calc_size(input, &geom);
window_fit(&input->win, &geom);
}
void input_fit(WInput *input, const WRectangle *geom)
{
input->max_geom=*geom;
input_refit(input);
}
void input_draw_config_updated(WInput *input)
{
GrBrush *brush;
brush=gr_get_brush(ROOTWIN_OF(input), input->win.win,
input_style(input));
if(brush==NULL)
return;
if(input->brush!=NULL)
grbrush_release(input->brush, input->win.win);
input->brush=brush;
input_refit(input);
region_default_draw_config_updated((WRegion*)input);
window_draw((WWindow*)input, TRUE);
}
/*}}}*/
/*{{{ Init/deinit */
bool input_init(WInput *input, WWindow *par, const WRectangle *geom)
{
Window win;
input->max_geom=*geom;
if(!window_init_new((WWindow*)input, par, geom))
return FALSE;
win=input->win.win;
input->brush=gr_get_brush(ROOTWIN_OF(par), win, input_style(input));
if(input->brush==NULL)
goto fail;
input_refit(input);
XSelectInput(wglobal.dpy, input->win.win, INPUT_MASK);
region_add_bindmap((WRegion*)input, &query_bindmap);
return TRUE;
fail:
window_deinit((WWindow*)input);
return FALSE;
}
void input_deinit(WInput *input)
{
if(input->brush!=NULL)
grbrush_release(input->brush, input->win.win);
window_deinit((WWindow*)input);
}
/*EXTL_DOC
* Close input not calling any possible finish handlers.
*/
EXTL_EXPORT_MEMBER
void input_cancel(WInput *input)
{
defer_destroy((WObj*)input);
}
/*EXTL_DOC
* Same as \fnref{WInput.cancel}.
*/
EXTL_EXPORT_MEMBER
void input_close(WInput *input)
{
input_cancel(input);
}
/*}}}*/
/*{{{ Focus */
static void input_inactivated(WInput *input)
{
window_draw((WWindow*)input, FALSE);
}
static void input_activated(WInput *input)
{
window_draw((WWindow*)input, FALSE);
}
/*}}}*/
/*{{{ Dynamic function table and class implementation */
static DynFunTab input_dynfuntab[]={
{region_fit, input_fit},
{region_draw_config_updated, input_draw_config_updated},
{region_close, input_close},
{region_activated, input_activated},
{region_inactivated, input_inactivated},
END_DYNFUNTAB
};
IMPLOBJ(WInput, WWindow, input_deinit, input_dynfuntab);
/*}}}*/
|