Beginnings of a C++ rewrite. We love to switch languages!

git-svn-id: https://samskivert.googlecode.com/svn/trunk@1330 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2003-11-28 21:34:59 +00:00
parent cbdff2c883
commit e06d189d6e
38 changed files with 2308 additions and 724 deletions
+60
View File
@@ -0,0 +1,60 @@
//
// $Id: lookuplet.cc,v 1.1 2003/11/28 21:34:59 mdb Exp $
#include <cstdlib>
#include <iostream>
#include <config.h>
#include <libgnomemm/main.h>
#include <libgnomeuimm/init.h>
// #include <bonobomm/widgets/wrap_init.h>
#include "lookuplet.hh"
#include "binding.hh"
#include "about.hh"
#include "properties.hh"
using namespace std;
bool lookuplet::on_query_key_press_event (GdkEventKey *ev)
{
return 0;
}
void lookuplet::on_query_selection_received (GtkSelectionData *data, guint time)
{
}
void lookuplet::on_prefs_clicked ()
{
manage(new class properties());
}
void lookuplet::exit_lookuplet ()
{
}
bool Gtk::Widget::on_delete_event (GdkEventAny* event)
{
exit(0);
}
int main(int argc, char **argv)
{
Gnome::Main m(PACKAGE, VERSION, Gnome::UI::module_info_get(), argc, argv);
// Gnome::Bonobo::wrap_init();
lookuplet *lookuplet = new class lookuplet();
// binding *binding = new class binding();
// about *about = new class about();
// properties *properties = new class properties();
m.run(*lookuplet);
delete lookuplet;
// delete binding;
// delete about;
// delete properties;
return 0;
}