grab stable branch
[synfig.git] / synfig-studio / tags / stable / src / gtkmm / onemoment.cpp
diff --git a/synfig-studio/tags/stable/src/gtkmm/onemoment.cpp b/synfig-studio/tags/stable/src/gtkmm/onemoment.cpp
new file mode 100644 (file)
index 0000000..c1d245f
--- /dev/null
@@ -0,0 +1,114 @@
+/*! ========================================================================
+** Sinfg
+** Template File
+** $Id: onemoment.cpp,v 1.1.1.1 2005/01/07 03:34:36 darco Exp $
+**
+** Copyright (c) 2002 Robert B. Quattlebaum Jr.
+**
+** This software and associated documentation
+** are CONFIDENTIAL and PROPRIETARY property of
+** the above-mentioned copyright holder.
+**
+** You may not copy, print, publish, or in any
+** other way distribute this software without
+** a prior written agreement with
+** the copyright holder.
+**
+** === N O T E S ===========================================================
+**
+** ========================================================================= */
+
+/* === H E A D E R S ======================================================= */
+
+#ifdef USING_PCH
+#      include "pch.h"
+#else
+#ifdef HAVE_CONFIG_H
+#      include <config.h>
+#endif
+
+#include <iostream>
+#include <string>
+
+#include <ETL/stringf>
+
+#include <gtkmm/image.h>
+#include <gdkmm/pixbufloader.h>
+#include <gtkmm/button.h>
+#include <gtkmm/label.h>
+#include <gtkmm/fixed.h>
+
+#include <sinfg/general.h>
+
+#include "onemoment.h"
+#include "app.h"
+
+#endif
+
+using namespace std;
+using namespace etl;
+using namespace studio;
+
+/* === M A C R O S ========================================================= */
+
+#ifndef VERSION
+#define VERSION        "unknown"
+#define PACKAGE        "sinfgstudio"
+#endif
+
+#ifdef WIN32
+#      ifdef IMAGE_DIR
+#              undef IMAGE_DIR
+#              define IMAGE_DIR "share\\pixmaps"
+#      endif
+#endif
+
+#ifndef IMAGE_DIR
+#      define IMAGE_DIR "/usr/local/share/pixmaps"
+#endif
+
+#ifndef IMAGE_EXT
+#      define IMAGE_EXT        "png"
+#endif
+
+/* === G L O B A L S ======================================================= */
+
+/* === P R O C E D U R E S ================================================= */
+
+/* === M E T H O D S ======================================================= */
+
+OneMoment::OneMoment():        Gtk::Window(Gtk::WINDOW_POPUP)
+{
+       
+       // Create the Copyright Label
+       Gtk::Label *label = manage(new class Gtk::Label(_("One Moment, Please...")));
+
+       set_title(_("One Moment, Please..."));
+       set_modal(false);
+       property_window_position().set_value(Gtk::WIN_POS_CENTER);
+       set_resizable(false);
+       add(*label);
+
+       Pango::AttrList attr_list;
+       Pango::AttrInt pango_size(Pango::Attribute::create_attr_size(Pango::SCALE*16));
+       pango_size.set_start_index(0);
+       pango_size.set_end_index(64);
+       attr_list.change(pango_size);
+
+       label->set_attributes(attr_list);
+
+       label->set_size_request(400,60);
+
+       get_root_window()->set_decorations(Gdk::DECOR_BORDER);
+
+       // show everything off
+       show_all();
+       
+       present();
+       while(studio::App::events_pending())studio::App::iteration(false);
+}
+
+OneMoment::~OneMoment()
+{
+       hide();
+}