< prev index next >

src/java.desktop/windows/native/libawt/windows/awt_Window.h

Print this page




 381 
 382     inline Type GetType() { return m_windowType; }
 383 
 384 private:
 385     int m_screenNum;
 386 
 387     void InitOwner(AwtWindow *owner);
 388 
 389     Type m_windowType;
 390     void InitType(JNIEnv *env, jobject peer);
 391 
 392     // Tweak the style according to the type of the window
 393     void TweakStyle(DWORD & style, DWORD & exStyle);
 394 
 395     // Set in _SetAlwaysOnTop()
 396     bool m_alwaysOnTop;
 397 public:
 398     inline bool IsAlwaysOnTop() { return m_alwaysOnTop; }
 399 };
 400 


 401 #endif /* AWT_WINDOW_H */


 381 
 382     inline Type GetType() { return m_windowType; }
 383 
 384 private:
 385     int m_screenNum;
 386 
 387     void InitOwner(AwtWindow *owner);
 388 
 389     Type m_windowType;
 390     void InitType(JNIEnv *env, jobject peer);
 391 
 392     // Tweak the style according to the type of the window
 393     void TweakStyle(DWORD & style, DWORD & exStyle);
 394 
 395     // Set in _SetAlwaysOnTop()
 396     bool m_alwaysOnTop;
 397 public:
 398     inline bool IsAlwaysOnTop() { return m_alwaysOnTop; }
 399 };
 400 
 401 HICON CreateIconFromRaster(JNIEnv* env, jintArray iconRaster, jint w, jint h);
 402 
 403 #endif /* AWT_WINDOW_H */
< prev index next >