]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - tests/GUI/main.cc
Le puse el icono de lo que se esta drageando cuando se draguea... Va tomando forma...
[z.facultad/75.42/plaqui.git] / tests / GUI / main.cc
1 //$Id: main.cc 5 2003-10-10 04:31:35Z luca $ -*- c++ -*-
2
3 /* gtkmm example Copyright (C) 2002 gtkmm development team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2
7  * as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  */
18
19 #include <gtkmm/main.h>
20 #include "dndwindow.h"
21
22 int main (int argc, char *argv[])
23 {
24   Gtk::Main kit(argc, argv);
25
26   DnDWindow dndWindow;
27   Gtk::Main::run(dndWindow); //Shows the window and returns when it is closed.
28
29   return 0;
30 }