Port to GtkSource* API
There are still bugs but this gets it started
This commit is contained in:
@@ -21,7 +21,7 @@ SCANGOBJ_OPTIONS=
|
||||
|
||||
# Extra options to supply to gtkdoc-scan.
|
||||
# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
|
||||
SCAN_OPTIONS=
|
||||
SCAN_OPTIONS = --rebuild-types
|
||||
|
||||
# Extra options to supply to gtkdoc-mkdb.
|
||||
MKDB_OPTIONS=--sgml-mode --output-format=xml
|
||||
@@ -41,8 +41,6 @@ CFILE_GLOB=$(top_srcdir)/xed/*.c
|
||||
# Header files to ignore when scanning (These are internal to xed).
|
||||
IGNORE_HFILES= \
|
||||
xed-commands.h \
|
||||
xed-document-loader.h \
|
||||
xed-document-saver.h \
|
||||
xed-documents-panel.h \
|
||||
xed-io-error-message-area.h \
|
||||
xed-languages-manager.h \
|
||||
@@ -92,6 +90,8 @@ GTKDOC_LIBS= \
|
||||
$(top_builddir)/xed/libxed.la \
|
||||
$(XED_LIBS)
|
||||
|
||||
MAINTAINERCLEANFILES = xed.types
|
||||
|
||||
# This includes the standard gtk-doc make rules, copied by gtkdocize.
|
||||
include $(top_srcdir)/gtk-doc.make
|
||||
|
||||
|
@@ -28,7 +28,6 @@
|
||||
<xi:include href="xml/xed-window.xml"/>
|
||||
<xi:include href="xml/xed-convert.xml"/>
|
||||
<xi:include href="xml/xed-debug.xml"/>
|
||||
<xi:include href="xml/xed-encodings.xml"/>
|
||||
<xi:include href="xml/xed-help.xml"/>
|
||||
<xi:include href="xml/xed-metadata-manager.xml"/>
|
||||
<xi:include href="xml/xed-utils.xml"/>
|
||||
|
@@ -39,20 +39,14 @@ xed_app_activatable_get_type
|
||||
XedDocumentPrivate
|
||||
<TITLE>XedDocument</TITLE>
|
||||
XedDocument
|
||||
XedDocumentSaveFlags
|
||||
XED_DOCUMENT_ERROR
|
||||
xed_document_error_quark
|
||||
xed_document_new
|
||||
xed_document_get_file
|
||||
xed_document_get_location
|
||||
xed_document_get_uri_for_display
|
||||
xed_document_get_short_name_for_display
|
||||
xed_document_get_mime_type
|
||||
xed_document_get_readonly
|
||||
xed_document_load
|
||||
xed_document_insert_file
|
||||
xed_document_load_cancel
|
||||
xed_document_save
|
||||
xed_document_save_as
|
||||
xed_document_is_untouched
|
||||
xed_document_is_untitled
|
||||
xed_document_get_deleted
|
||||
@@ -458,22 +452,6 @@ xed_debug
|
||||
xed_debug_message
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>xed-encodings</FILE>
|
||||
XedEncoding
|
||||
XED_TYPE_ENCODING
|
||||
xed_encoding_get_type
|
||||
xed_encoding_copy
|
||||
xed_encoding_free
|
||||
xed_encoding_get_from_charset
|
||||
xed_encoding_get_from_index
|
||||
xed_encoding_to_string
|
||||
xed_encoding_get_name
|
||||
xed_encoding_get_charset
|
||||
xed_encoding_get_utf8
|
||||
xed_encoding_get_current
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>xed-help</FILE>
|
||||
xed_help_display
|
||||
|
@@ -1,36 +1,28 @@
|
||||
#include "xed-app.h"
|
||||
#include "xed-app-activatable.h"
|
||||
#include "xed-document.h"
|
||||
#include "xed-encodings.h"
|
||||
#include "xed-encodings-combo-box.h"
|
||||
#include "xed-file-chooser-dialog.h"
|
||||
#include "xed-message.h"
|
||||
#include "xed-message-bus.h"
|
||||
#include "xed-message-type.h"
|
||||
#include "xed-notebook.h"
|
||||
#include "xed-panel.h"
|
||||
#include "xed-progress-message-area.h"
|
||||
#include "xed-statusbar.h"
|
||||
#include "xed-tab.h"
|
||||
#include "xed-view.h"
|
||||
#include "xed-view-activatable.h"
|
||||
#include "xed-window.h"
|
||||
#include "xed-window-activatable.h"
|
||||
xed_app_get_type
|
||||
egg_sm_client_get_type
|
||||
egg_sm_client_xsmp_get_type
|
||||
xed_app_activatable_get_type
|
||||
xed_app_get_type
|
||||
xed_close_button_get_type
|
||||
xed_document_get_type
|
||||
xed_encoding_get_type
|
||||
xed_encodings_combo_box_get_type
|
||||
xed_file_chooser_dialog_get_type
|
||||
xed_message_get_type
|
||||
xed_history_entry_get_type
|
||||
xed_message_bus_get_type
|
||||
xed_message_get_type
|
||||
xed_message_type_get_type
|
||||
xed_notebook_get_type
|
||||
xed_panel_get_type
|
||||
xed_print_job_get_type
|
||||
xed_print_preview_get_type
|
||||
xed_progress_message_area_get_type
|
||||
xed_searchbar_get_type
|
||||
xed_settings_get_type
|
||||
xed_status_combo_box_get_type
|
||||
xed_statusbar_get_type
|
||||
xed_tab_get_type
|
||||
xed_view_get_type
|
||||
xed_tab_label_get_type
|
||||
xed_view_activatable_get_type
|
||||
xed_window_get_type
|
||||
xed_view_frame_get_type
|
||||
xed_view_get_type
|
||||
xed_window_activatable_get_type
|
||||
xed_window_get_type
|
||||
|
Reference in New Issue
Block a user