A TODO. Good to know, what we're going to do

This commit is contained in:
Piotr Gaczkowski 2007-07-08 11:35:52 +00:00
parent 90b055136b
commit fca81d8795
3 changed files with 33 additions and 1 deletions

5
TODO.pep Normal file
View File

@ -0,0 +1,5 @@
• configure access model when changing it in the combobox
• tab in preferences for PEP
• PEP in status change
• possible transport of Mood in message
• Tune not set to none on connection

View File

@ -65,6 +65,34 @@
<property name="layout_style">GTK_BUTTONBOX_DEFAULT_STYLE</property> <property name="layout_style">GTK_BUTTONBOX_DEFAULT_STYLE</property>
<property name="spacing">0</property> <property name="spacing">0</property>
<child>
<widget class="GtkButton" id="add_button">
<property name="visible">True</property>
<property name="can_default">True</property>
<property name="has_default">True</property>
<property name="can_focus">True</property>
<property name="label">gtk-add</property>
<property name="use_stock">True</property>
<property name="relief">GTK_RELIEF_NORMAL</property>
<property name="focus_on_click">True</property>
<property name="response_id">-5</property>
<signal name="clicked" handler="on_add_button_clicked" last_modification_time="Sat, 31 Mar 2007 07:57:55 GMT"/>
</widget>
</child>
<child>
<widget class="GtkButton" id="delete_button">
<property name="visible">True</property>
<property name="can_default">True</property>
<property name="has_default">True</property>
<property name="can_focus">True</property>
<property name="label">gtk-delete</property>
<property name="use_stock">True</property>
<property name="relief">GTK_RELIEF_NORMAL</property>
<property name="focus_on_click">True</property>
<property name="response_id">-5</property>
<signal name="clicked" handler="on_delete_button_clicked" last_modification_time="Sat, 31 Mar 2007 07:57:55 GMT"/>
</widget>
</child>
<child> <child>
<widget class="GtkButton" id="cancel_button"> <widget class="GtkButton" id="cancel_button">
<property name="visible">True</property> <property name="visible">True</property>

View File

@ -3476,7 +3476,6 @@ class ManagePEPServicesWindow:
model.append(['presence']) model.append(['presence'])
model.append(['roster']) model.append(['roster'])
model.append(['whitelist']) model.append(['whitelist'])
model.append(['delete'])
cellrenderer_combo = gtk.CellRendererCombo() cellrenderer_combo = gtk.CellRendererCombo()
cellrenderer_combo.set_property('text-column', 0) cellrenderer_combo.set_property('text-column', 0)
cellrenderer_combo.set_property('model', model) cellrenderer_combo.set_property('model', model)