com gtk/php-gtk: Added missing methods in GtkAboutDialog: TODO2
[email protected] (David Soria Parra) Mon, 24 Oct 2005 05:46:26 +0000
| Newsgroups | php.gtk.cvs |
|---|---|
| Message-ID | <[email protected]> |
Commit: 1aea5a633d1cdf1ee1d15ca4f92097744592a8dd Author: Christian Weiske <[email protected]> Mon, 24 Oct 2005 05:46:26 +0000 Parents: 759d47c0b52e9aac8efeac700c6ba921c0b60b74 Branches: master Link: http://git.php.net/?p=gtk/php-gtk.git;a=commitdiff;h=1aea5a633d1cdf1ee1d15ca4f92097744592a8dd Log: Added missing methods in GtkAboutDialog Changed paths: M TODO2 Diff: 1aea5a633d1cdf1ee1d15ca4f92097744592a8dd diff --git a/TODO2 b/TODO2 index d453b62..fde7cf9 100644 --- a/TODO2 +++ b/TODO2 @@ -21,28 +21,38 @@ Base Functionality Classes and Functions ~~~~~~~~~~~~~~~~~~~~~ +* GtkAboutDialog + get_authors/set_authors + get_artists/set_artists + get_documenters/set_documenters + set_url_hook/set_email_hook + set_logo_icon_name seems to find no icons at all - could somebody test it on his box? * GdkGC - implement property access (read/write) + implement property access (read/write) * GtkListStore * GtkTreeModel * GtkTreeStore - Some iterator functions as get_iter() are expecting a GBoxed parameter. + Some iterator functions as get_iter() are expecting a GBoxed parameter. * GtkTreeView * GtkCellRenderer * GtkClipboard * GtkEntries can't be var_dumped, probably something missing * GtkIconView get_selected_items is not implemented +* GtkIconTheme + list_icons() is missing * GtkTreeModelFilter constructor doesn't take a model / does it have a constructor?? didn't see one in gtk.defs * Would it be good to call GtkLabel::set_ellipsize(PANGO::ELLIPSIZE_END) as part - of an override for (left-justifying) GtkLabel::set_width_chars() (optional param)? + of an override for (left-justifying) GtkLabel::set_width_chars() (optional param)? * GtkTextBuffer->create_tag() is not implemented * GtkTextBuffer->move_mark_by_name('selection_bound', ...) moves both the the - insert and select_bound marks + insert and select_bound marks * GtkTextTagTable->lookup() is not implemented * GtkTextTagTable->foreach() is not implemented * GtkTextTag does not do anything. Either the properties must be accessible or - a method must be defined to set them (i.e. GtkTextBuffer->create_tag()). + a method must be defined to set them (i.e. GtkTextBuffer->create_tag()). +* GtkWindow + set_default_icon_from_file() is missing Fix ~~~