forked from linuxmint/nemo
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnemo-desktop-utils.h
More file actions
44 lines (36 loc) · 1.57 KB
/
Copy pathnemo-desktop-utils.h
File metadata and controls
44 lines (36 loc) · 1.57 KB
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
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/*
* Nemo
*
* Nemo 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.
*
* Nemo 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, Suite 500, MA 02110-1335, USA.
*
*/
#ifndef NEMO_DESKTOP_UTILS_H
#define NEMO_DESKTOP_UTILS_H
#include <gdk/gdk.h>
#include <gtk/gtk.h>
G_BEGIN_DECLS
void nemo_desktop_utils_get_monitor_work_rect (gint num, GdkRectangle *rect);
void nemo_desktop_utils_get_monitor_geometry (gint num, GdkRectangle *rect);
gint nemo_desktop_utils_get_primary_monitor (void);
gint nemo_desktop_utils_get_monitor_for_widget (GtkWidget *widget);
gint nemo_desktop_utils_get_num_monitors (void);
gboolean nemo_desktop_utils_get_monitor_cloned (gint monitor, gint x_primary);
gint nemo_desktop_utils_get_scale_factor (void);
gboolean nemo_desktop_utils_configure_layer_shell (GtkWindow *window,
gint monitor_num,
gboolean keyboard_on_demand);
G_END_DECLS
#endif