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"
|
2014-03-30 20:07:48 +02:00
|
|
|
#include "common/array.h"
|
|
|
|
#include "common/luaclass.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
|
|
|
|
{
|
2014-03-30 16:37:19 +02:00
|
|
|
LUA_OBJECT_HEADER
|
2016-04-16 14:49:09 +02:00
|
|
|
/** Is this screen still valid and may be used? */
|
|
|
|
bool valid;
|
2009-04-17 16:14:09 +02:00
|
|
|
/** Screen geometry */
|
|
|
|
area_t geometry;
|
2016-05-08 16:30:37 +02:00
|
|
|
/** Screen workarea */
|
|
|
|
area_t workarea;
|
2009-09-21 16:29:19 +02:00
|
|
|
/** The screen outputs informations */
|
|
|
|
screen_output_array_t outputs;
|
2016-04-15 20:29:08 +02:00
|
|
|
/** Some XID identifying this screen */
|
|
|
|
uint32_t xid;
|
2009-04-17 16:14:09 +02:00
|
|
|
};
|
2014-03-30 16:37:19 +02:00
|
|
|
ARRAY_FUNCS(screen_t *, screen, DO_NOTHING)
|
2008-07-24 17:37:24 +02:00
|
|
|
|
2014-03-30 16:37:19 +02:00
|
|
|
void screen_class_setup(lua_State *L);
|
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);
|
2015-07-21 15:16:37 +02:00
|
|
|
bool screen_coord_in_screen(screen_t *, int, int);
|
2016-09-02 21:15:00 +02:00
|
|
|
bool screen_area_in_screen(screen_t *, area_t);
|
2014-03-30 16:37:19 +02:00
|
|
|
int screen_get_index(screen_t *);
|
2009-08-24 16:32:19 +02:00
|
|
|
void screen_client_moveto(client_t *, screen_t *, bool);
|
2016-02-27 15:57:57 +01:00
|
|
|
void screen_update_primary(void);
|
2016-05-08 16:30:37 +02:00
|
|
|
void screen_update_workarea(screen_t *);
|
2016-02-27 15:44:25 +01:00
|
|
|
screen_t *screen_get_primary(void);
|
2019-02-18 10:42:29 +01:00
|
|
|
void screen_schedule_refresh(void);
|
2007-11-14 18:16:43 +01:00
|
|
|
|
2014-03-30 17:55:42 +02:00
|
|
|
screen_t *luaA_checkscreen(lua_State *, int);
|
|
|
|
|
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
|