~ubuntu-branches/ubuntu/saucy/vmware-view-open-client/saucy

« back to all changes in this revision

Viewing changes to gtk/transitionDlg.hh

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2010-06-04 17:45:04 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20100604174504-zjltuc0hdp4mv7de
Tags: 4.5.0-264434+dfsg-1
* Merging upstream version 4.5.0-264434+dfsg.
* Updating date and version header in manpage.
* Rediffing doc-pdf.patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
      TRANSITION_ERROR
54
54
   };
55
55
 
56
 
   TransitionDlg(TransitionType type, const Util::string &message);
 
56
   TransitionDlg(TransitionType type, const Util::string &message,
 
57
                 bool useMarkup = false);
57
58
 
58
59
   ~TransitionDlg();
59
60
 
 
61
   void SetMessage(const Util::string &message);
60
62
   void SetAnimation(GdkPixbufAnimation *animation);
61
63
   void SetAnimation(std::vector<GdkPixbuf *> pixbufs, float rate);
62
64
   void SetImage(GdkPixbuf *pixbuf);
69
71
                                                 bool copy_pixels,
70
72
                                                 unsigned int frames);
71
73
 
 
74
   virtual bool GetHelpVisible() { return false; }
 
75
 
72
76
private:
73
77
   static void OnImageRealized(GtkWidget *widget, gpointer userData);
74
78
   static void OnImageUnrealized(GtkWidget *widget, gpointer userData);
83
87
   float mRate;
84
88
   unsigned int mTimeout;
85
89
   TransitionType mTransitionType;
 
90
   GtkLabel *mLabel;
86
91
};
87
92
 
88
93