2017-08-27 18:52:42 +00:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2001 Havoc Pennington
|
|
|
|
* Copyright (C) 2002, 2003, 2004 Red Hat, Inc.
|
|
|
|
* Copyright (C) 2003, 2004 Rob Adams
|
|
|
|
* Copyright (C) 2004-2006 Elijah Newren
|
|
|
|
*
|
|
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2023-07-21 13:37:20 +00:00
|
|
|
#pragma once
|
2017-08-27 18:52:42 +00:00
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
|
2024-01-05 09:15:20 +00:00
|
|
|
#include "meta/common.h"
|
|
|
|
#include "meta/display.h"
|
|
|
|
#include "meta/prefs.h"
|
|
|
|
#include "meta/types.h"
|
2017-08-27 18:52:42 +00:00
|
|
|
|
|
|
|
#define META_TYPE_WORKSPACE_MANAGER (meta_workspace_manager_get_type ())
|
2019-01-23 02:25:35 +00:00
|
|
|
|
|
|
|
META_EXPORT
|
2018-10-31 10:47:17 +00:00
|
|
|
G_DECLARE_FINAL_TYPE (MetaWorkspaceManager,
|
|
|
|
meta_workspace_manager,
|
|
|
|
META, WORKSPACE_MANAGER,
|
|
|
|
GObject)
|
2017-08-27 18:52:42 +00:00
|
|
|
|
2019-01-23 02:25:35 +00:00
|
|
|
META_EXPORT
|
2017-08-27 19:02:40 +00:00
|
|
|
GList *meta_workspace_manager_get_workspaces (MetaWorkspaceManager *workspace_manager);
|
|
|
|
|
2019-01-23 02:25:35 +00:00
|
|
|
META_EXPORT
|
2017-08-27 18:52:42 +00:00
|
|
|
int meta_workspace_manager_get_n_workspaces (MetaWorkspaceManager *workspace_manager);
|
|
|
|
|
2019-01-23 02:25:35 +00:00
|
|
|
META_EXPORT
|
2017-08-27 19:02:40 +00:00
|
|
|
MetaWorkspace* meta_workspace_manager_get_workspace_by_index (MetaWorkspaceManager *workspace_manager,
|
|
|
|
int index);
|
|
|
|
|
2019-01-23 02:25:35 +00:00
|
|
|
META_EXPORT
|
2017-08-27 19:02:40 +00:00
|
|
|
void meta_workspace_manager_remove_workspace (MetaWorkspaceManager *workspace_manager,
|
|
|
|
MetaWorkspace *workspace,
|
|
|
|
guint32 timestamp);
|
|
|
|
|
2019-01-23 02:25:35 +00:00
|
|
|
META_EXPORT
|
2017-08-27 19:02:40 +00:00
|
|
|
MetaWorkspace *meta_workspace_manager_append_new_workspace (MetaWorkspaceManager *workspace_manager,
|
|
|
|
gboolean activate,
|
|
|
|
guint32 timestamp);
|
|
|
|
|
2019-07-04 22:56:24 +00:00
|
|
|
META_EXPORT
|
|
|
|
void meta_workspace_manager_reorder_workspace (MetaWorkspaceManager *workspace_manager,
|
|
|
|
MetaWorkspace *workspace,
|
|
|
|
int new_index);
|
|
|
|
|
2019-01-23 02:25:35 +00:00
|
|
|
META_EXPORT
|
2017-08-27 19:02:40 +00:00
|
|
|
int meta_workspace_manager_get_active_workspace_index (MetaWorkspaceManager *workspace_manager);
|
|
|
|
|
2019-01-23 02:25:35 +00:00
|
|
|
META_EXPORT
|
2017-08-27 19:02:40 +00:00
|
|
|
MetaWorkspace *meta_workspace_manager_get_active_workspace (MetaWorkspaceManager *workspace_manager);
|
|
|
|
|
2019-01-23 02:25:35 +00:00
|
|
|
META_EXPORT
|
2017-08-27 19:02:40 +00:00
|
|
|
void meta_workspace_manager_override_workspace_layout (MetaWorkspaceManager *workspace_manager,
|
|
|
|
MetaDisplayCorner starting_corner,
|
|
|
|
gboolean vertical_layout,
|
|
|
|
int n_rows,
|
|
|
|
int n_columns);
|