2007-10-03 17:26:14 +02:00
|
|
|
/*
|
2007-09-14 11:35:17 +02:00
|
|
|
* screen.h - screen management header
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
2009-05-10 16:51:20 +02:00
|
|
|
* Copyright © 2007-2009 Julien Danjou <julien@danjou.info>
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
2007-09-14 11:35:17 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AWESOME_SCREEN_H
|
|
|
|
#define AWESOME_SCREEN_H
|
|
|
|
|
2009-09-07 17:22:32 +02:00
|
|
|
#include "globalconf.h"
|
2009-09-07 17:51:40 +02:00
|
|
|
#include "draw.h"
|
2007-09-14 11:35:17 +02:00
|
|
|
|
2009-09-21 16:29:19 +02:00
|
|
|
typedef struct screen_output_t screen_output_t;
|
|
|
|
ARRAY_TYPE(screen_output_t, screen_output)
|
|
|
|
|
2009-04-17 16:14:09 +02:00
|
|
|
struct a_screen
|
|
|
|
{
|
|
|
|
/** Screen geometry */
|
|
|
|
area_t geometry;
|
2009-08-30 07:26:19 +02:00
|
|
|
/** The signals emitted by screen objects */
|
2009-07-13 12:07:10 +02:00
|
|
|
signal_array_t signals;
|
2009-09-21 16:29:19 +02:00
|
|
|
/** The screen outputs informations */
|
|
|
|
screen_output_array_t outputs;
|
2013-10-04 15:24:09 +02:00
|
|
|
/** The lua userdata representing this screen */
|
|
|
|
void *userdata;
|
2009-04-17 16:14:09 +02:00
|
|
|
};
|
|
|
|
ARRAY_FUNCS(screen_t, screen, DO_NOTHING)
|
2008-07-24 17:37:24 +02:00
|
|
|
|
2009-07-13 12:07:10 +02:00
|
|
|
void screen_emit_signal(lua_State *, screen_t *, const char *, int);
|
2008-09-18 16:03:05 +02:00
|
|
|
void screen_scan(void);
|
2010-08-16 14:25:12 +02:00
|
|
|
screen_t *screen_getbycoord(int, int);
|
2009-05-05 17:32:53 +02:00
|
|
|
area_t screen_area_get(screen_t *, bool);
|
2010-08-16 13:47:40 +02:00
|
|
|
area_t display_area_get(void);
|
2009-08-24 16:32:19 +02:00
|
|
|
void screen_client_moveto(client_t *, screen_t *, bool);
|
2007-11-14 18:16:43 +01:00
|
|
|
|
2007-09-14 11:35:17 +02:00
|
|
|
#endif
|
2011-09-11 16:50:01 +02:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|