Made GtkBubble/SelectionWindow private at the moment

This commit is contained in:
Carlos Garnacho 2013-01-18 18:02:04 +01:00 committed by Matthias Clasen
parent 0ba92bc26d
commit ceeed09d07
11 changed files with 7 additions and 68 deletions

View File

@ -89,8 +89,6 @@
<xi:include href="xml/gtkaboutdialog.xml" />
<xi:include href="xml/gtkassistant.xml" />
<xi:include href="xml/gtkoffscreenwindow.xml" />
<xi:include href="xml/gtkbubblewindow.xml" />
<xi:include href="xml/gtkselectionwindow.xml" />
</chapter>
<chapter id="DisplayWidgets">

View File

@ -7494,54 +7494,3 @@ GTK_COLOR_CHOOSER_DIALOG_GET_CLASS
GtkColorChooserDialogPrivate
gtk_color_chooser_dialog_get_type
</SECTION>
<SECTION>
<FILE>gtkbubblewindow</FILE>
<TITLE>GtkBubbleWindow</TITLE>
GtkBubbleWindow
gtk_bubble_window_new
gtk_bubble_window_set_relative_to
gtk_bubble_window_get_relative_to
gtk_bubble_window_set_pointing_to
gtk_bubble_window_get_pointing_to
gtk_bubble_window_set_position
gtk_bubble_window_get_position
gtk_bubble_window_popup
gtk_bubble_window_popdown
gtk_bubble_window_grab
gtk_bubble_window_ungrab
<SUBSECTION Standard>
GTK_TYPE_BUBBLE_WINDOW
GTK_BUBBLE_WINDOW
GTK_BUBBLE_WINDOW_CLASS
GTK_IS_BUBBLE_WINDOW
GTK_IS_BUBBLE_WINDOW_CLASS
GTK_BUBBLE_WINDOW_GET_CLASS
<SUBSECTION Private>
gtk_bubble_window_get_type
</SECTION>
<SECTION>
<FILE>gtkselectionwindow</FILE>
<TITLE>GtkSelectionWindow</TITLE>
GtkSelectionWindow
gtk_selection_window_new
gtk_selection_window_set_editable
gtk_selection_window_get_editable
gtk_selection_window_set_has_selection
gtk_selection_window_get_has_selection
gtk_selection_window_get_toolbar
<SUBSECTION Standard>
GTK_TYPE_SELECTION_WINDOW
GTK_SELECTION_WINDOW
GTK_SELECTION_WINDOW_CLASS
GTK_IS_SELECTION_WINDOW
GTK_IS_SELECTION_WINDOW_CLASS
GTK_SELECTION_WINDOW_GET_CLASS
<SUBSECTION Private>
gtk_selection_window_get_type
</SECTION>

View File

@ -23,7 +23,6 @@ gtk_aspect_frame_get_type
gtk_assistant_get_type
gtk_bin_get_type
gtk_box_get_type
gtk_bubble_window_get_type
gtk_builder_get_type
gtk_buildable_get_type
gtk_button_box_get_type
@ -147,7 +146,6 @@ gtk_scrollable_get_type
gtk_scrollbar_get_type
gtk_scrolled_window_get_type
gtk_search_entry_get_type
gtk_selection_window_get_type
gtk_separator_get_type
gtk_separator_menu_item_get_type
gtk_separator_tool_item_get_type

View File

@ -202,7 +202,6 @@ gtk_public_h_sources = \
gtkbindings.h \
gtkborder.h \
gtkbox.h \
gtkbubblewindow.h \
gtkbuilder.h \
gtkbuildable.h \
gtkbutton.h \
@ -320,7 +319,6 @@ gtk_public_h_sources = \
gtkscrolledwindow.h \
gtksearchentry.h \
gtkselection.h \
gtkselectionwindow.h \
gtkseparator.h \
gtkseparatormenuitem.h \
gtkseparatortoolitem.h \
@ -424,6 +422,7 @@ gtk_private_h_sources = \
gtkbitmaskprivateimpl.h \
gtkborderimageprivate.h \
gtkboxprivate.h \
gtkbubblewindowprivate.h \
gtkbuilderprivate.h \
gtkbuttonprivate.h \
gtkcairoblurprivate.h \
@ -524,6 +523,7 @@ gtk_private_h_sources = \
gtksearchengine.h \
gtksearchenginesimple.h \
gtkselectionprivate.h \
gtkselectionwindowprivate.h \
gtksettingsprivate.h \
gtksizegroup-private.h \
gtksizerequestcacheprivate.h \

View File

@ -53,7 +53,6 @@
#include <gtk/gtkbindings.h>
#include <gtk/gtkborder.h>
#include <gtk/gtkbox.h>
#include <gtk/gtkbubblewindow.h>
#include <gtk/gtkbuildable.h>
#include <gtk/gtkbuilder.h>
#include <gtk/gtkbutton.h>
@ -169,7 +168,6 @@
#include <gtk/gtkscrolledwindow.h>
#include <gtk/gtksearchentry.h>
#include <gtk/gtkselection.h>
#include <gtk/gtkselectionwindow.h>
#include <gtk/gtkseparator.h>
#include <gtk/gtkseparatormenuitem.h>
#include <gtk/gtkseparatortoolitem.h>

View File

@ -39,7 +39,7 @@
#include "config.h"
#include <gdk/gdk.h>
#include <cairo-gobject.h>
#include "gtkbubblewindow.h"
#include "gtkbubblewindowprivate.h"
#include "gtktypebuiltins.h"
#include "gtkmain.h"
#include "gtkprivate.h"

View File

@ -18,10 +18,6 @@
#ifndef __GTK_BUBBLE_WINDOW_H__
#define __GTK_BUBBLE_WINDOW_H__
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
#error "Only <gtk/gtk.h> can be included directly."
#endif
#include <gtk/gtkwindow.h>
G_BEGIN_DECLS

View File

@ -66,7 +66,7 @@
#include "gtkwidgetprivate.h"
#include "gtkstylecontextprivate.h"
#include "gtktexthandleprivate.h"
#include "gtkselectionwindow.h"
#include "gtkselectionwindowprivate.h"
#include "a11y/gtkentryaccessible.h"

View File

@ -27,7 +27,7 @@
*/
#include "config.h"
#include "gtkselectionwindow.h"
#include "gtkselectionwindowprivate.h"
#include "gtkactiongroup.h"
#include "gtkuimanager.h"
#include "gtkclipboard.h"

View File

@ -22,7 +22,7 @@
#error "Only <gtk/gtk.h> can be included directly."
#endif
#include <gtk/gtkbubblewindow.h>
#include "gtkbubblewindowprivate.h"
G_BEGIN_DECLS

View File

@ -53,7 +53,7 @@
#include "gtktexthandleprivate.h"
#include "gtkstylecontextprivate.h"
#include "gtkcssstylepropertyprivate.h"
#include "gtkselectionwindow.h"
#include "gtkselectionwindowprivate.h"
#include "a11y/gtktextviewaccessibleprivate.h"