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;
|
|
|
|
/** Tag list */
|
|
|
|
tag_array_t tags;
|
|
|
|
/** Window that contains the systray */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
xcb_window_t window;
|
|
|
|
/** Systray window parent */
|
|
|
|
xcb_window_t parent;
|
2010-07-22 09:23:13 +02:00
|
|
|
/** Is awesome the systray owner? */
|
2010-05-21 21:18:12 +02:00
|
|
|
bool registered;
|
2009-04-17 16:14:09 +02:00
|
|
|
} systray;
|
2009-04-23 18:05:30 +02:00
|
|
|
/** Previously focused client */
|
|
|
|
client_t *prev_client_focus;
|
2009-04-17 16:14:09 +02:00
|
|
|
/** Focused client */
|
|
|
|
client_t *client_focus;
|
|
|
|
/** The monitor of startup notifications */
|
|
|
|
SnMonitorContext *snmonitor;
|
2009-07-10 16:26:49 +02:00
|
|
|
/** The default visual, used to draw */
|
|
|
|
xcb_visualtype_t *visual;
|
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-27 09:22:03 +02:00
|
|
|
/** True if the banning on this screen needs to be updated */
|
|
|
|
bool need_lazy_banning;
|
2009-09-21 16:29:19 +02:00
|
|
|
/** The screen outputs informations */
|
|
|
|
screen_output_array_t outputs;
|
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);
|
2009-04-17 16:14:09 +02:00
|
|
|
screen_t *screen_getbycoord(screen_t *, int, int);
|
2009-05-05 17:32:53 +02:00
|
|
|
area_t screen_area_get(screen_t *, bool);
|
|
|
|
area_t display_area_get(int);
|
2008-03-21 10:53:17 +01:00
|
|
|
int screen_virttophys(int);
|
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
|
2007-12-18 09:24:15 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|