After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 570626 - The call history view would need a partial rewrite
The call history view would need a partial rewrite
Status: RESOLVED FIXED
Product: ekiga
Classification: Applications
Component: GUI
GIT master
Other All
: Normal normal
: ---
Assigned To: Ekiga maintainers
Ekiga maintainers
Depends on:
Blocks: 570629 570632
 
 
Reported: 2009-02-05 13:25 UTC by Snark
Modified: 2010-10-09 07:58 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Snark 2009-02-05 13:25:50 UTC
The current code/api just returns a GtkWidget to embed ; it would be nice to have something like the roster view, that is a real new widget, with a signal similar to the roster view's :
  void (*presentity_selected) (RosterViewGtk* self,
			       gpointer presentity);
(which would be more like :
  void (*contact_selected) (CallHistoryViewGtk* self,
			    gpointer contact);
)

The signal would be emitted in two situations :
(1) the user selects a contact, and the pointer gives a pointer to the contact ;
(2) the user clears the history, and the pointer is NULL.
Comment 1 Snark 2009-02-05 13:26:31 UTC
The title of this bug is misleading : "The call history would need a partial rewrite" should be "The call history view would need a partial rewrite".
Comment 2 Snark 2010-10-09 07:58:58 UTC
Eh, I did partially rewrite it as a full GtkWidget, with new signals!