mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-05 20:26:09 +01:00
cosmetic + copyright
This commit is contained in:
parent
70707a37ad
commit
e505b76062
1 changed files with 29 additions and 14 deletions
|
@ -1,3 +1,24 @@
|
||||||
|
/*
|
||||||
|
* textbox.c - text box widget
|
||||||
|
*
|
||||||
|
* Copyright © 2007 Aldo Cortesi <aldo@nullcube.com>
|
||||||
|
*
|
||||||
|
* 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.,
|
||||||
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
#include <confuse.h>
|
#include <confuse.h>
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
#include "widget.h"
|
#include "widget.h"
|
||||||
|
@ -5,52 +26,47 @@
|
||||||
|
|
||||||
extern AwesomeConf globalconf;
|
extern AwesomeConf globalconf;
|
||||||
|
|
||||||
|
typedef struct
|
||||||
typedef struct Data Data;
|
|
||||||
struct Data
|
|
||||||
{
|
{
|
||||||
char *text;
|
char *text;
|
||||||
XColor fg;
|
XColor fg;
|
||||||
XColor bg;
|
XColor bg;
|
||||||
};
|
} Data;
|
||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
update(Widget *widget, char *text){
|
update(Widget *widget, char *text)
|
||||||
Data *d;
|
{
|
||||||
d = (Data*) widget->data;
|
Data *d = widget->data;
|
||||||
if (d->text)
|
if (d->text)
|
||||||
p_delete(&d->text);
|
p_delete(&d->text);
|
||||||
d->text = a_strdup(text);
|
d->text = a_strdup(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
textbox_draw(Widget *widget, DrawCtx *ctx, int offset,
|
textbox_draw(Widget *widget, DrawCtx *ctx, int offset,
|
||||||
int used __attribute__ ((unused)))
|
int used __attribute__ ((unused)))
|
||||||
{
|
{
|
||||||
VirtScreen vscreen = globalconf.screens[widget->statusbar->screen];
|
VirtScreen vscreen = globalconf.screens[widget->statusbar->screen];
|
||||||
int width, location;
|
int width, location;
|
||||||
Data *d;
|
Data *d = widget->data;
|
||||||
d = (Data*) widget->data;
|
|
||||||
width = textwidth(ctx, vscreen.font, d->text);
|
width = textwidth(ctx, vscreen.font, d->text);
|
||||||
location = calculate_offset(vscreen.statusbar->width,
|
location = calculate_offset(vscreen.statusbar->width,
|
||||||
width,
|
width,
|
||||||
offset,
|
offset,
|
||||||
widget->alignment);
|
widget->alignment);
|
||||||
|
|
||||||
drawtext(ctx, location, 0, width, vscreen.statusbar->height,
|
drawtext(ctx, location, 0, width, vscreen.statusbar->height,
|
||||||
vscreen.font, d->text, d->fg, d->bg);
|
vscreen.font, d->text, d->fg, d->bg);
|
||||||
return width;
|
return width;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
textbox_tell(Widget *widget, char *command)
|
textbox_tell(Widget *widget, char *command)
|
||||||
{
|
{
|
||||||
update(widget, command);
|
update(widget, command);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Widget *
|
Widget *
|
||||||
textbox_new(Statusbar *statusbar, cfg_t *config)
|
textbox_new(Statusbar *statusbar, cfg_t *config)
|
||||||
{
|
{
|
||||||
|
@ -63,7 +79,6 @@ textbox_new(Statusbar *statusbar, cfg_t *config)
|
||||||
w->draw = textbox_draw;
|
w->draw = textbox_draw;
|
||||||
w->tell = textbox_tell;
|
w->tell = textbox_tell;
|
||||||
|
|
||||||
|
|
||||||
d = p_new(Data, 1);
|
d = p_new(Data, 1);
|
||||||
w->data = (void*) d;
|
w->data = (void*) d;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue