Add Split Window plugin (work-in-progress).
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/branches/split-window-plugin@2906 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
parent
3ed124861e
commit
9f8f2c7b28
@ -1,3 +1,10 @@
|
||||
2008-08-26 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
|
||||
|
||||
* src/plugindata.h, src/plugins.c, po/POTFILES.in,
|
||||
plugins/splitwindow.c, plugins/Makefile.am, plugins/makefile.win32:
|
||||
Add Split Window plugin (work-in-progress).
|
||||
|
||||
|
||||
2008-08-26 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
|
||||
|
||||
* src/highlighting.c:
|
||||
|
@ -16,6 +16,7 @@ export_la_LDFLAGS = -module -avoid-version
|
||||
vcdiff_la_LDFLAGS = -module -avoid-version
|
||||
autosave_la_LDFLAGS = -module -avoid-version
|
||||
filebrowser_la_LDFLAGS = -module -avoid-version
|
||||
splitwindow_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
if PLUGINS
|
||||
|
||||
@ -26,7 +27,8 @@ plugin_LTLIBRARIES = \
|
||||
export.la \
|
||||
vcdiff.la \
|
||||
autosave.la \
|
||||
filebrowser.la
|
||||
filebrowser.la \
|
||||
splitwindow.la
|
||||
|
||||
# Plugins not to be installed
|
||||
noinst_LTLIBRARIES = \
|
||||
@ -39,6 +41,7 @@ export_la_SOURCES = export.c
|
||||
vcdiff_la_SOURCES = vcdiff.c
|
||||
autosave_la_SOURCES = autosave.c
|
||||
filebrowser_la_SOURCES = filebrowser.c
|
||||
splitwindow_la_SOURCES = splitwindow.c
|
||||
|
||||
# instead of linking against all in $(GTK_LIBS), we link only against needed libs
|
||||
demoplugin_la_LIBADD = $(GTK_LIBS)
|
||||
@ -48,6 +51,7 @@ export_la_LIBADD = $(GTK_LIBS)
|
||||
vcdiff_la_LIBADD = $(GTK_LIBS)
|
||||
autosave_la_LIBADD = $(GTK_LIBS)
|
||||
filebrowser_la_LIBADD = $(GTK_LIBS)
|
||||
splitwindow_la_LIBADD = $(GTK_LIBS)
|
||||
|
||||
endif # PLUGINS
|
||||
|
||||
|
@ -54,6 +54,7 @@ plugins: \
|
||||
demoplugin.dll \
|
||||
classbuilder.dll \
|
||||
export.dll \
|
||||
splitwindow.dll \
|
||||
vcdiff.dll \
|
||||
autosave.dll \
|
||||
filebrowser.dll
|
||||
|
194
plugins/splitwindow.c
Normal file
194
plugins/splitwindow.c
Normal file
@ -0,0 +1,194 @@
|
||||
/*
|
||||
* splitview.c
|
||||
*
|
||||
* Copyright 2008 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include "geany.h"
|
||||
#include <glib/gi18n.h>
|
||||
#include "Scintilla.h"
|
||||
#include "ScintillaWidget.h"
|
||||
#include "SciLexer.h"
|
||||
|
||||
#include "ui_utils.h"
|
||||
#include "document.h"
|
||||
#include "editor.h"
|
||||
#include "plugindata.h"
|
||||
#include "pluginmacros.h"
|
||||
|
||||
|
||||
PLUGIN_VERSION_CHECK(76)
|
||||
PLUGIN_SET_INFO(_("Split Window"), _("Splits the editor view into two windows."),
|
||||
"0.1", _("The Geany developer team"))
|
||||
|
||||
|
||||
GeanyData *geany_data;
|
||||
GeanyFunctions *geany_functions;
|
||||
|
||||
static GeanyEditor *our_editor = NULL;
|
||||
|
||||
|
||||
static gint sci_get_value(ScintillaObject *sci, gint message_id, gint param)
|
||||
{
|
||||
return p_sci->send_message(sci, message_id, param, 0);
|
||||
}
|
||||
|
||||
|
||||
static void set_styles(ScintillaObject *oldsci, ScintillaObject *newsci)
|
||||
{
|
||||
gint style_id;
|
||||
|
||||
for (style_id = 0; style_id <= 127; style_id++)
|
||||
{
|
||||
gint val;
|
||||
|
||||
val = sci_get_value(oldsci, SCI_STYLEGETFORE, style_id);
|
||||
p_sci->send_message(newsci, SCI_STYLESETFORE, style_id, val);
|
||||
val = sci_get_value(oldsci, SCI_STYLEGETBACK, style_id);
|
||||
p_sci->send_message(newsci, SCI_STYLESETBACK, style_id, val);
|
||||
val = sci_get_value(oldsci, SCI_STYLEGETBOLD, style_id);
|
||||
p_sci->send_message(newsci, SCI_STYLESETBOLD, style_id, val);
|
||||
val = sci_get_value(oldsci, SCI_STYLEGETITALIC, style_id);
|
||||
p_sci->send_message(newsci, SCI_STYLESETITALIC, style_id, val);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
static void sci_set_font(ScintillaObject *sci, gint style, const gchar *font,
|
||||
G_GNUC_UNUSED gint size)
|
||||
{
|
||||
p_sci->send_message(sci, SCI_STYLESETFONT, style, (sptr_t) font);
|
||||
p_sci->send_message(sci, SCI_STYLESETSIZE, style, size);
|
||||
}
|
||||
|
||||
|
||||
static void set_font(ScintillaObject *sci, const gchar *font_name, gint size)
|
||||
{
|
||||
gint style;
|
||||
|
||||
for (style = 0; style <= 127; style++)
|
||||
sci_set_font(sci, style, font_name, size);
|
||||
/* line number and braces */
|
||||
sci_set_font(sci, STYLE_LINENUMBER, font_name, size);
|
||||
sci_set_font(sci, STYLE_BRACELIGHT, font_name, size);
|
||||
sci_set_font(sci, STYLE_BRACEBAD, font_name, size);
|
||||
}
|
||||
|
||||
|
||||
static void update_font(ScintillaObject *sci, const gchar *font_name, gint size)
|
||||
{
|
||||
gchar *fname;
|
||||
PangoFontDescription *font_desc;
|
||||
|
||||
g_return_if_fail(font_name != NULL);
|
||||
|
||||
font_desc = pango_font_description_from_string(font_name);
|
||||
|
||||
fname = g_strdup_printf("!%s", pango_font_description_get_family(font_desc));
|
||||
size = pango_font_description_get_size(font_desc) / PANGO_SCALE;
|
||||
|
||||
set_font(sci, fname, size);
|
||||
|
||||
g_free(fname);
|
||||
pango_font_description_free(font_desc);
|
||||
}
|
||||
|
||||
|
||||
/* line numbers visibility */
|
||||
static void set_line_numbers(ScintillaObject * sci, gboolean set, gint extra_width)
|
||||
{
|
||||
if (set)
|
||||
{
|
||||
gchar tmp_str[15];
|
||||
gint len = p_sci->send_message(sci, SCI_GETLINECOUNT, 0, 0);
|
||||
gint width;
|
||||
g_snprintf(tmp_str, 15, "_%d%d", len, extra_width);
|
||||
width = p_sci->send_message(sci, SCI_TEXTWIDTH, STYLE_LINENUMBER, (sptr_t) tmp_str);
|
||||
p_sci->send_message(sci, SCI_SETMARGINWIDTHN, 0, width);
|
||||
p_sci->send_message(sci, SCI_SETMARGINSENSITIVEN, 0, FALSE); /* use default behaviour */
|
||||
}
|
||||
else
|
||||
{
|
||||
p_sci->send_message(sci, SCI_SETMARGINWIDTHN, 0, 0 );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
static void update_view(ScintillaObject *sci)
|
||||
{
|
||||
ScintillaObject *current = p_document->get_current()->editor->sci;
|
||||
gint lexer;
|
||||
|
||||
update_font(sci, geany->interface_prefs->editor_font, 0);
|
||||
|
||||
lexer = p_sci->send_message(current, SCI_GETLEXER, 0, 0);
|
||||
p_sci->send_message(sci, SCI_SETLEXER, lexer, 0);
|
||||
set_styles(current, sci);
|
||||
|
||||
set_line_numbers(sci, TRUE, 0);
|
||||
p_sci->send_message(sci, SCI_SETMARGINWIDTHN, 1, 0 ); /* hide marker margin */
|
||||
}
|
||||
|
||||
|
||||
static void on_split_view(GtkMenuItem *menuitem, GeanyData *data)
|
||||
{
|
||||
GtkWidget *notebook = data->main_widgets->notebook;
|
||||
GtkWidget *parent = gtk_widget_get_parent(notebook);
|
||||
GtkWidget *pane;
|
||||
GeanyDocument *doc = p_document->get_current();
|
||||
ScintillaObject *sci;
|
||||
gpointer sdoc;
|
||||
|
||||
g_return_if_fail(doc);
|
||||
g_return_if_fail(our_editor == NULL);
|
||||
|
||||
/* reparent document notebook */
|
||||
g_object_ref(notebook);
|
||||
gtk_container_remove(GTK_CONTAINER(parent), notebook);
|
||||
pane = gtk_hpaned_new();
|
||||
gtk_container_add(GTK_CONTAINER(parent), pane);
|
||||
gtk_paned_add1(GTK_PANED(pane), notebook);
|
||||
g_object_unref(notebook);
|
||||
|
||||
sci = doc->editor->sci;
|
||||
sdoc = (gpointer) p_sci->send_message(sci, SCI_GETDOCPOINTER, 0, 0);
|
||||
our_editor = p_editor->create(doc);
|
||||
sci = our_editor->sci;
|
||||
p_sci->send_message(sci, SCI_SETDOCPOINTER, 0, GPOINTER_TO_INT(sdoc));
|
||||
update_view(sci);
|
||||
gtk_paned_add2(GTK_PANED(pane), GTK_WIDGET(sci));
|
||||
gtk_widget_show_all(pane);
|
||||
}
|
||||
|
||||
|
||||
void plugin_init(GeanyData *data)
|
||||
{
|
||||
GtkWidget *item = gtk_menu_item_new_with_mnemonic(_("_Split Horizontally"));
|
||||
|
||||
gtk_widget_show(item);
|
||||
gtk_menu_append(data->main_widgets->tools_menu, item);
|
||||
g_signal_connect(item, "activate", G_CALLBACK(on_split_view), data);
|
||||
}
|
||||
|
||||
|
||||
void plugin_cleanup()
|
||||
{
|
||||
if (our_editor)
|
||||
p_editor->destroy(our_editor);
|
||||
/* TODO: reparent doc notebook etc */
|
||||
}
|
@ -42,3 +42,4 @@ plugins/export.c
|
||||
plugins/vcdiff.c
|
||||
plugins/filebrowser.c
|
||||
plugins/autosave.c
|
||||
plugins/splitwindow.c
|
||||
|
@ -41,7 +41,7 @@
|
||||
enum {
|
||||
/** The Application Programming Interface (API) version, incremented
|
||||
* whenever any plugin data types are modified or appended to. */
|
||||
GEANY_API_VERSION = 89,
|
||||
GEANY_API_VERSION = 90,
|
||||
|
||||
/** The Application Binary Interface (ABI) version, incremented whenever
|
||||
* existing fields in the plugin data types have to be changed or reordered. */
|
||||
@ -455,6 +455,8 @@ typedef struct EditorFuncs
|
||||
void (*clear_indicators) (struct GeanyEditor *editor);
|
||||
|
||||
const struct GeanyIndentPrefs* (*get_indent_prefs)(struct GeanyEditor *editor);
|
||||
struct GeanyEditor* (*create)(struct GeanyDocument *doc);
|
||||
void (*destroy)(struct GeanyEditor *editor);
|
||||
/* Remember to convert any GeanyDocument or ScintillaObject pointers in any
|
||||
* appended functions to GeanyEditor pointers. */
|
||||
}
|
||||
|
@ -115,7 +115,9 @@ static EditorFuncs editor_funcs = {
|
||||
&editor_set_indicator,
|
||||
&editor_set_indicator_on_line,
|
||||
&editor_clear_indicators,
|
||||
&editor_get_indent_prefs
|
||||
&editor_get_indent_prefs,
|
||||
&editor_create,
|
||||
&editor_destroy
|
||||
};
|
||||
|
||||
static ScintillaFuncs sci_funcs = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user