/usr/include/gtksourceviewmm-3.0/gtksourceviewmm/completionprovider.h is in libgtksourceviewmm-3.0-dev 3.2.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 | // -*- c++ -*-
// Generated by gtkmmproc -- DO NOT MODIFY!
#ifndef _GTKSOURCEVIEWMM_COMPLETIONPROVIDER_H
#define _GTKSOURCEVIEWMM_COMPLETIONPROVIDER_H
#include <glibmm.h>
/* completionprovider.h
*
* Copyright (C) 2009, 2010, 2011 Krzesimir Nowak
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <glibmm/interface.h>
#include <gtksourceview/gtksourcecompletionprovider.h>
#include <gtksourceviewmm/completionactivation.h>
#include <gtksourceviewmm/completioncontext.h>
#include <gtksourceviewmm/completioninfo.h>
#include <gtksourceviewmm/completionproposal.h>
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef struct _GtkSourceCompletionProvider GtkSourceCompletionProvider;
typedef struct _GtkSourceCompletionProviderClass GtkSourceCompletionProviderClass;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
namespace Gsv
{ class CompletionProvider_Class; } // namespace Gsv
namespace Gsv
{
class CompletionContext;
/** Completion provider interface.
*
* You must implement this interface to provide proposals to Completion.
*
* @newin{2,10}
*/
class CompletionProvider : public Glib::Interface
{
#ifndef DOXYGEN_SHOULD_SKIP_THIS
public:
typedef CompletionProvider CppObjectType;
typedef CompletionProvider_Class CppClassType;
typedef GtkSourceCompletionProvider BaseObjectType;
typedef GtkSourceCompletionProviderIface BaseClassType;
private:
friend class CompletionProvider_Class;
static CppClassType completionprovider_class_;
// noncopyable
CompletionProvider(const CompletionProvider&);
CompletionProvider& operator=(const CompletionProvider&);
protected:
CompletionProvider(); // you must derive from this class
/** Called by constructors of derived classes. Provide the result of
* the Class init() function to ensure that it is properly
* initialized.
*
* @param interface_class The Class object for the derived type.
*/
explicit CompletionProvider(const Glib::Interface_Class& interface_class);
public:
// This is public so that C++ wrapper instances can be
// created for C instances of unwrapped types.
// For instance, if an unexpected C type implements the C interface.
explicit CompletionProvider(GtkSourceCompletionProvider* castitem);
protected:
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
public:
virtual ~CompletionProvider();
static void add_interface(GType gtype_implementer);
#ifndef DOXYGEN_SHOULD_SKIP_THIS
static GType get_type() G_GNUC_CONST;
static GType get_base_type() G_GNUC_CONST;
#endif
///Provides access to the underlying C GObject.
GtkSourceCompletionProvider* gobj() { return reinterpret_cast<GtkSourceCompletionProvider*>(gobject_); }
///Provides access to the underlying C GObject.
const GtkSourceCompletionProvider* gobj() const { return reinterpret_cast<GtkSourceCompletionProvider*>(gobject_); }
private:
public:
/** Get the name of the provider. This should be a translatable name for
* display to the user. For example: _("Document word completion provider"). The
* returned string must be freed with Glib::free().
* @return A new string containing the name of the provider.
*/
Glib::ustring get_name() const;
/** Get the icon of the provider.
*
* @return The icon to be used for the provider, or empty Glib::RefPtr if the
* provider does not have a special icon.
*
* @newin{2,10}
*/
Glib::RefPtr<Gdk::Pixbuf> get_icon();
/** Get the icon of the provider.
*
* @return The icon to be used for the provider, or empty Glib::RefPtr if the
* provider does not have a special icon.
*
* @newin{2,10}
*/
Glib::RefPtr<const Gdk::Pixbuf> get_icon() const;
/** Populate @a context with proposals from a provider.
*
* @param context The CompletionContext.
*
* @newin{2,10}
*/
void populate(const Glib::RefPtr<CompletionContext>& context);
/** Get whether the provider match the context of completion detailed in
* @a context.
*
* @param context The CompletionContext.
*
* @return @c true if provider matches the completion context, @c false
* otherwise.
*
* @newin{2,10}
*/
bool match(const Glib::RefPtr<const CompletionContext>& context) const;
/** Get a customized info widget to show extra information of a proposal.
*
* This allows for customized widgets on a proposal basis, although in general
* providers will have the same custom widget for all their proposals and
* @a proposal can be ignored. The implementation of this function is
* optional. If implemented, update_info() @b must also be implemented. If not
* implemented, the default get_info() will be used to display extra
* information about a CompletionProposal.
*
* @param proposal The currently selected CompletionProposal.
*
* @return A custom Gtk::Widget to show extra information about @a proposal.
*
* @newin{2,10}
*/
Gtk::Widget* get_info_widget(const Glib::RefPtr<const CompletionProposal>& proposal);
/** Get a customized info widget to show extra information of a proposal.
*
* This allows for customized widgets on a proposal basis, although in general
* providers will have the same custom widget for all their proposals and
* @a proposal can be ignored. The implementation of this function is
* optional. If implemented, update_info() @b must also be implemented. If not
* implemented, the default get_info() will be used to display extra
* information about a CompletionProposal.
*
* @param proposal The currently selected CompletionProposal.
*
* @return A custom Gtk::Widget to show extra information about @a proposal.
*
* @newin{2,10}
*/
const Gtk::Widget* get_info_widget(const Glib::RefPtr<const CompletionProposal>& proposal) const;
/** Update extra information shown in @a info for @a proposal.
*
* This should be implemented if your provider sets a custom info widget for
* @a proposal. This function @b must be implemented when get_info_widget() is
* implemented.
*
* @param proposal A CompletionProposal.
* @param info A CompletionInfo.
*
* @newin{2,10}
*/
void update_info(const Glib::RefPtr<const CompletionProposal>& proposal, const CompletionInfo& info);
/** Get the Gtk::TextIter at which the completion for @a proposal starts.
*
* When implemented, the completion can use this information to position the
* completion window accordingly when a proposal is selected in the completion
* window.
*
* @param proposal A CompletionProposal.
* @param context A CompletionContext.
* @param iter A Gtk::TextIter.
*
* @return @c true if @a iter was set for @a proposal, @c false otherwise.
*
* @newin{2,10}
*/
bool get_start_iter(const Glib::RefPtr<const CompletionContext>& context, const Glib::RefPtr<const CompletionProposal>& proposal, Gtk::TextIter& iter);
/** Activate @a proposal at @a iter.
*
* When this functions returns <tt>false</tt>, the default activation of
* @a proposal will take place which replaces the word at @a iter with the
* label of @a proposal.
*
* @param proposal A CompletionProposal.
* @param iter A Gtk::TextIter.
*
* @return @c true to indicate that the proposal activation has been handled,
* @c false otherwise.
*
* @newin{2,10}
*/
bool activate_proposal(const Glib::RefPtr<CompletionProposal>& proposal, const Gtk::TextIter& iter);
/** Get with what kind of activation the provider should be activated.
*
* @return A combination of CompletionActivation.
*
* @newin{2,10}
*/
CompletionActivation get_activation() const;
/** Get the delay in milliseconds before starting interactive completion for
* this provider.
*
* A value of -1 indicates to use the default value as set
* by Completion::property_auto_complete_delay().
*
* @return The interactive delay in milliseconds.
*
* @newin{2,10}
*/
int get_interactive_delay() const;
/** Get the provider priority.
*
* The priority determines the order in which proposals appear in the
* completion popup. Higher priorities are sorted before lower priorities. The
* default priority is 0.
*
* @return The provider priority.
*
* @newin{2,10}
*/
int get_priority() const;
private:
virtual Glib::ustring get_name_vfunc() const;
virtual Glib::RefPtr<Gdk::Pixbuf> get_icon_vfunc();
virtual void populate_vfunc(const Glib::RefPtr<CompletionContext>& context);
virtual bool match_vfunc(const Glib::RefPtr<const CompletionContext>& context) const;
virtual CompletionActivation get_activation_vfunc() const;
virtual Gtk::Widget* get_info_widget_vfunc(const Glib::RefPtr<const CompletionProposal>& proposal) const;
virtual void update_info_vfunc(const Glib::RefPtr<const CompletionProposal>& proposal, const CompletionInfo& info);
virtual bool get_start_iter_vfunc(const Glib::RefPtr<const CompletionContext>& context, const Glib::RefPtr<const CompletionProposal>& proposal, Gtk::TextIter& iter);
virtual bool activate_proposal_vfunc(const Glib::RefPtr<CompletionProposal>& proposal, const Gtk::TextIter& iter);
virtual int get_interactive_delay_vfunc() const;
virtual int get_priority_vfunc() const;
public:
public:
//C++ methods used to invoke GTK+ virtual functions:
protected:
//GTK+ Virtual Functions (override these to change behaviour):
//Default Signal Handlers::
};
} // namespace Gsv
namespace Glib
{
/** A Glib::wrap() method for this object.
*
* @param object The C instance.
* @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref.
* @result A C++ instance that wraps this C instance.
*
* @relates Gsv::CompletionProvider
*/
Glib::RefPtr<Gsv::CompletionProvider> wrap(GtkSourceCompletionProvider* object, bool take_copy = false);
} // namespace Glib
#endif /* _GTKSOURCEVIEWMM_COMPLETIONPROVIDER_H */
|