Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/externals/g4tools/include/toolx/Xt/session

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

Diff markup

Differences between /externals/g4tools/include/toolx/Xt/session (Version 11.3.0) and /externals/g4tools/include/toolx/Xt/session (Version 10.0.p1)


  1 // Copyright (C) 2010, Guy Barrand. All rights    
  2 // See the file tools.license for terms.          
  3                                                   
  4 #ifndef toolx_Xt_session                          
  5 #define toolx_Xt_session                          
  6                                                   
  7 #include <X11/Intrinsic.h>                        
  8 #include <X11/Shell.h>                            
  9 #include <X11/StringDefs.h>                       
 10                                                   
 11 #include <ostream>                                
 12                                                   
 13 namespace toolx {                                 
 14 namespace Xt {                                    
 15                                                   
 16 class session {                                   
 17 public:                                           
 18   session(std::ostream& a_out)                    
 19   :m_out(a_out),m_app_context(0),m_app_widget(    
 20   {}                                              
 21   session(std::ostream& a_out,XtAppContext a_a    
 22   :m_out(a_out),m_app_context(a_app_context),m    
 23   {}                                              
 24   session(std::ostream& a_out,int& a_argc,char    
 25   :m_out(a_out),m_app_context(0),m_app_widget(    
 26   {                                               
 27   //LookDSM_Problem();                            
 28     Arg args[1];                                  
 29     XtSetArg(args[0],XtNgeometry,XtNewString("    
 30     m_app_widget = ::XtAppInitialize(&m_app_co    
 31     if(!m_app_context || !m_app_widget) {         
 32       m_app_context = 0;                          
 33       m_app_widget = 0;                           
 34       m_app_owner = false;                        
 35       return;                                     
 36     }                                             
 37     m_app_owner = true;                           
 38   }                                               
 39   virtual ~session() {                            
 40     if(m_app_owner) {                             
 41       if(m_app_widget) {::XtDestroyWidget(m_ap    
 42       if(m_app_context) {::XtDestroyApplicatio    
 43     }                                             
 44   }                                               
 45 protected:                                        
 46   session(const session& a_from)                  
 47   :m_out(a_from.m_out),m_app_context(0),m_app_    
 48   {}                                              
 49   session& operator=(const session&){return *t    
 50 public:                                           
 51   std::ostream& out() const {return m_out;}       
 52   bool is_valid() {return m_app_context && m_a    
 53   bool steer() {                                  
 54     if(!m_app_context) return false;              
 55     while(true) {                                 
 56       XEvent event;                               
 57       ::XtAppNextEvent(m_app_context,&event);     
 58       ::XtDispatchEvent(&event);                  
 59       //if(m_exit) break;                         
 60     }                                             
 61     return true;                                  
 62   }                                               
 63   bool sync() {                                   
 64   //if(!m_app_widget) return false;               
 65   //Display* display = XtDisplay(m_app_widget)    
 66   //::XSync(display,False);                       
 67     if(!m_app_context) return false;              
 68     while(true) {                                 
 69       XtInputMask input = ::XtAppPending(m_app    
 70       if(input==0) break;                         
 71       XEvent event;                               
 72       ::XtAppNextEvent(m_app_context,&event);     
 73       ::XtDispatchEvent(&event);                  
 74     }                                             
 75     return true;                                  
 76   }                                               
 77 public:                                           
 78   Widget get_app_widget() {return m_app_widget    
 79 protected:                                        
 80   std::ostream& m_out;                            
 81   XtAppContext m_app_context;                     
 82   Widget m_app_widget;                            
 83   bool m_app_owner;                               
 84 };                                                
 85                                                   
 86 }}                                                
 87                                                   
 88                                                   
 89 #endif