756c28af57
wiring up to be done. git-svn-id: https://samskivert.googlecode.com/svn/trunk@1332 6335cc39-0255-0410-8fd6-9bcaacd3b74c
19 lines
393 B
C++
19 lines
393 B
C++
//
|
|
// $Id: lookuplet.hh,v 1.2 2003/11/30 23:50:18 mdb Exp $
|
|
|
|
#ifndef _LOOKUPLET_HH
|
|
#include "lookuplet_glade.hh"
|
|
#define _LOOKUPLET_HH
|
|
|
|
class lookuplet : public lookuplet_glade
|
|
{
|
|
friend class lookuplet_glade;
|
|
bool on_query_key_press_event(GdkEventKey *ev);
|
|
void on_prefs_clicked();
|
|
void exit_lookuplet();
|
|
public:
|
|
void on_clip_text_received(const gchar* text);
|
|
};
|
|
|
|
#endif
|