< prev index next >

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

Print this page




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


 400 #endif /* AWT_WINDOW_H */


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