2006-06-16 11:17:52 +00:00
|
|
|
/*
|
|
|
|
* notebook.h - this file is part of Geany, a fast and lightweight IDE
|
|
|
|
*
|
2012-06-18 01:13:05 +02:00
|
|
|
* Copyright 2006-2012 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
|
|
|
|
* Copyright 2006-2012 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
|
2006-06-16 11:17:52 +00: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.
|
|
|
|
*
|
2012-08-24 19:25:57 +02:00
|
|
|
* 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.
|
2006-06-16 11:17:52 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GEANY_NOTEBOOK_H
|
|
|
|
#define GEANY_NOTEBOOK_H 1
|
|
|
|
|
2014-05-18 17:31:51 -07:00
|
|
|
#include "document.h"
|
|
|
|
|
2014-05-18 17:07:50 -07:00
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2008-02-20 11:24:23 +00:00
|
|
|
void notebook_init(void);
|
2006-06-16 11:17:52 +00:00
|
|
|
|
2011-12-24 00:47:15 +01:00
|
|
|
void notebook_free(void);
|
|
|
|
|
2006-12-05 10:37:36 +00:00
|
|
|
/* Returns page number of notebook page, or -1 on error */
|
2014-05-18 17:31:51 -07:00
|
|
|
gint notebook_new_tab(GeanyDocument *doc);
|
2006-06-16 11:17:52 +00:00
|
|
|
|
2008-02-27 13:17:29 +00:00
|
|
|
/* Always use this instead of gtk_notebook_remove_page(). */
|
2006-11-22 16:07:18 +00:00
|
|
|
void notebook_remove_page(gint page_num);
|
2006-11-21 18:39:23 +00:00
|
|
|
|
2011-12-24 00:47:15 +01:00
|
|
|
/* Switch notebook to the last used tab. Can be called repeatedly to get to the
|
|
|
|
* previous tabs. */
|
|
|
|
void notebook_switch_tablastused(void);
|
|
|
|
|
2012-01-12 00:33:50 +01:00
|
|
|
/* Returns TRUE when MRU tab switch is in progress (i.e. not at the final
|
|
|
|
* document yet). */
|
|
|
|
gboolean notebook_switch_in_progress(void);
|
|
|
|
|
2014-05-18 17:07:50 -07:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* GEANY_NOTEBOOK_H */
|