Home
last modified time | relevance | path

Searched refs:windowClass (Results 1 – 25 of 464) sorted by relevance

12345678910>>...19

/dports/archivers/ppmd-7z/p7zip_9.04/CPP/Windows/Control/
H A DWindow2.cpp52 WNDCLASS windowClass; in CreateEx() local
56 windowClass.style = 0; in CreateEx()
59 windowClass.cbClsExtra = NULL; in CreateEx()
60 windowClass.cbWndExtra = NULL; in CreateEx()
62 windowClass.hIcon = NULL; in CreateEx()
65 windowClass.lpszMenuName = NULL; in CreateEx()
86 WNDCLASSW windowClass; in CreateEx() local
105 WNDCLASSW windowClass; in CreateEx() local
107 windowClass.style = 0; in CreateEx()
109 windowClass.cbClsExtra = NULL; in CreateEx()
[all …]
/dports/games/lwjgl/lwjgl-2df01dd/src/native/windows/opengles/
H A Dcontext.c56 WNDCLASS windowClass; in registerWindow() local
57 memset(&windowClass, 0, sizeof(windowClass)); in registerWindow()
58 windowClass.style = CS_OWNDC; in registerWindow()
59 windowClass.lpfnWndProc = win_proc; in registerWindow()
60 windowClass.cbClsExtra = 0; in registerWindow()
61 windowClass.cbWndExtra = 0; in registerWindow()
62 windowClass.hInstance = dll_handle; in registerWindow()
65 windowClass.hbrBackground = NULL; in registerWindow()
66 windowClass.lpszMenuName = NULL; in registerWindow()
67 windowClass.lpszClassName = class_name; in registerWindow()
[all …]
/dports/devel/sfml/SFML-2.5.1/examples/win32/
H A DWin32.cpp55 WNDCLASS windowClass; in main() local
56 windowClass.style = 0; in main()
57 windowClass.lpfnWndProc = &onEvent; in main()
58 windowClass.cbClsExtra = 0; in main()
59 windowClass.cbWndExtra = 0; in main()
60 windowClass.hInstance = instance; in main()
61 windowClass.hIcon = NULL; in main()
62 windowClass.hCursor = 0; in main()
64 windowClass.lpszMenuName = NULL; in main()
65 windowClass.lpszClassName = TEXT("SFML App"); in main()
[all …]
/dports/games/xblast/xblast-2.10.4/
H A Dw32_init.c54 static WNDCLASS windowClass; in InitWindow() local
57 windowClass.style = 0; in InitWindow()
58 windowClass.lpfnWndProc = WindowProc; in InitWindow()
59 windowClass.cbClsExtra = 0; in InitWindow()
60 windowClass.cbWndExtra = 0; in InitWindow()
61 windowClass.hInstance = instance; in InitWindow()
62 windowClass.hIcon = LoadIcon (instance, xblastClass); in InitWindow()
63 windowClass.hCursor = LoadCursor (NULL, IDC_ARROW); in InitWindow()
64 windowClass.hbrBackground = GetStockObject (BLACK_BRUSH); in InitWindow()
65 windowClass.lpszClassName = xblastClass; in InitWindow()
[all …]
/dports/security/kleopatra/kleopatra-21.12.3/src/utils/
H A Dkuniqueservice_win.cpp48 WNDCLASS windowClass; in createResponder() local
51 windowClass.style = CS_GLOBALCLASS | CS_DBLCLKS; in createResponder()
52 windowClass.lpfnWndProc = windowProc; in createResponder()
54 windowClass.lpszClassName = wndName; in createResponder()
55 windowClass.hIcon = nullptr; in createResponder()
56 windowClass.hCursor = nullptr; in createResponder()
57 windowClass.hbrBackground = nullptr; in createResponder()
58 windowClass.lpszMenuName = nullptr; in createResponder()
59 windowClass.cbClsExtra = 0; in createResponder()
60 windowClass.cbWndExtra = 0; in createResponder()
[all …]
/dports/audio/surge-synthesizer-lv2/surge-release_1.9.0/vstgui.surge/vstgui/lib/platform/win32/
H A Dwin32openglview.cpp49 WNDCLASS windowClass = {}; in initWindowClass() local
50windowClass.style = CS_HREDRAW|CS_VREDRAW|CS_OWNDC|CS_GLOBALCLASS;//|CS_OWNDC; // add Private-DC c… in initWindowClass()
52 windowClass.lpfnWndProc = WindowProc; in initWindowClass()
53 windowClass.cbClsExtra = 0; in initWindowClass()
54 windowClass.cbWndExtra = 0; in initWindowClass()
55 windowClass.hInstance = GetInstance (); in initWindowClass()
56 windowClass.hIcon = 0; in initWindowClass()
58 windowClass.hCursor = LoadCursor (NULL, IDC_ARROW); in initWindowClass()
59 windowClass.lpszMenuName = 0; in initWindowClass()
60 windowClass.lpszClassName = gGLWindowClassName; in initWindowClass()
[all …]
/dports/audio/vst3sdk/vst3sdk-3.7.1_build_50-1-g8199057/vstgui4/vstgui/lib/platform/win32/
H A Dwin32openglview.cpp49 WNDCLASS windowClass = {}; in initWindowClass() local
50windowClass.style = CS_HREDRAW|CS_VREDRAW|CS_OWNDC|CS_GLOBALCLASS;//|CS_OWNDC; // add Private-DC c… in initWindowClass()
52 windowClass.lpfnWndProc = WindowProc; in initWindowClass()
53 windowClass.cbClsExtra = 0; in initWindowClass()
54 windowClass.cbWndExtra = 0; in initWindowClass()
55 windowClass.hInstance = GetInstance (); in initWindowClass()
56 windowClass.hIcon = nullptr; in initWindowClass()
58 windowClass.hCursor = LoadCursor (NULL, IDC_ARROW); in initWindowClass()
59 windowClass.lpszMenuName = nullptr; in initWindowClass()
60 windowClass.lpszClassName = gGLWindowClassName; in initWindowClass()
[all …]
/dports/lang/tcl86/tcl8.6.12/win/
H A DtclWinNotify.c86 WNDCLASSW windowClass; in Tcl_InitNotifier() local
95 windowClass.style = 0; in Tcl_InitNotifier()
96 windowClass.cbClsExtra = 0; in Tcl_InitNotifier()
97 windowClass.cbWndExtra = 0; in Tcl_InitNotifier()
99 windowClass.hbrBackground = NULL; in Tcl_InitNotifier()
100 windowClass.lpszMenuName = NULL; in Tcl_InitNotifier()
101 windowClass.lpszClassName = classname; in Tcl_InitNotifier()
102 windowClass.lpfnWndProc = NotifierProc; in Tcl_InitNotifier()
103 windowClass.hIcon = NULL; in Tcl_InitNotifier()
104 windowClass.hCursor = NULL; in Tcl_InitNotifier()
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/javax/swing/JWindow/ShapedAndTranslucentWindows/
H A DPerPixelTranslucent.java53 for (Class<Window> windowClass: WINDOWS_TO_TEST) in main()
54 new PerPixelTranslucent(windowClass).doTest(); in main()
57 public PerPixelTranslucent(Class windowClass) throws Exception { in PerPixelTranslucent() argument
58 super(windowClass, 1.0f, 0.5f, false); in PerPixelTranslucent()
H A DPerPixelTranslucentGradient.java54 for (Class<Window> windowClass: WINDOWS_TO_TEST) in main()
55 new PerPixelTranslucentGradient(windowClass).doTest(); in main()
58 public PerPixelTranslucentGradient(Class windowClass) throws Exception { in PerPixelTranslucentGradient() argument
59 super(windowClass, 1.0f, 0f, true); in PerPixelTranslucentGradient()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/javax/swing/JWindow/ShapedAndTranslucentWindows/
H A DPerPixelTranslucent.java53 for (Class<Window> windowClass: WINDOWS_TO_TEST) in main()
54 new PerPixelTranslucent(windowClass).doTest(); in main()
57 public PerPixelTranslucent(Class windowClass) throws Exception { in PerPixelTranslucent() argument
58 super(windowClass, 1.0f, 0.5f, false); in PerPixelTranslucent()
H A DPerPixelTranslucentGradient.java54 for (Class<Window> windowClass: WINDOWS_TO_TEST) in main()
55 new PerPixelTranslucentGradient(windowClass).doTest(); in main()
58 public PerPixelTranslucentGradient(Class windowClass) throws Exception { in PerPixelTranslucentGradient() argument
59 super(windowClass, 1.0f, 0f, true); in PerPixelTranslucentGradient()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/javax/swing/JWindow/ShapedAndTranslucentWindows/
H A DPerPixelTranslucent.java53 for (Class<Window> windowClass: WINDOWS_TO_TEST) in main()
54 new PerPixelTranslucent(windowClass).doTest(); in main()
57 public PerPixelTranslucent(Class windowClass) throws Exception { in PerPixelTranslucent() argument
58 super(windowClass, 1.0f, 0.5f, false); in PerPixelTranslucent()
H A DPerPixelTranslucentGradient.java54 for (Class<Window> windowClass: WINDOWS_TO_TEST) in main()
55 new PerPixelTranslucentGradient(windowClass).doTest(); in main()
58 public PerPixelTranslucentGradient(Class windowClass) throws Exception { in PerPixelTranslucentGradient() argument
59 super(windowClass, 1.0f, 0f, true); in PerPixelTranslucentGradient()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/javax/swing/JWindow/ShapedAndTranslucentWindows/
H A DPerPixelTranslucent.java53 for (Class<Window> windowClass: WINDOWS_TO_TEST) in main()
54 new PerPixelTranslucent(windowClass).doTest(); in main()
57 public PerPixelTranslucent(Class windowClass) throws Exception { in PerPixelTranslucent() argument
58 super(windowClass, 1.0f, 0.5f, false); in PerPixelTranslucent()
H A DPerPixelTranslucentGradient.java54 for (Class<Window> windowClass: WINDOWS_TO_TEST) in main()
55 new PerPixelTranslucentGradient(windowClass).doTest(); in main()
58 public PerPixelTranslucentGradient(Class windowClass) throws Exception { in PerPixelTranslucentGradient() argument
59 super(windowClass, 1.0f, 0f, true); in PerPixelTranslucentGradient()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/javax/swing/JWindow/ShapedAndTranslucentWindows/
H A DPerPixelTranslucent.java53 for (Class<Window> windowClass: WINDOWS_TO_TEST) in main()
54 new PerPixelTranslucent(windowClass).doTest(); in main()
57 public PerPixelTranslucent(Class windowClass) throws Exception { in PerPixelTranslucent() argument
58 super(windowClass, 1.0f, 0.5f, false); in PerPixelTranslucent()
H A DPerPixelTranslucentGradient.java54 for (Class<Window> windowClass: WINDOWS_TO_TEST) in main()
55 new PerPixelTranslucentGradient(windowClass).doTest(); in main()
58 public PerPixelTranslucentGradient(Class windowClass) throws Exception { in PerPixelTranslucentGradient() argument
59 super(windowClass, 1.0f, 0f, true); in PerPixelTranslucentGradient()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/javax/swing/JWindow/ShapedAndTranslucentWindows/
H A DPerPixelTranslucent.java53 for (Class<Window> windowClass: WINDOWS_TO_TEST) in main()
54 new PerPixelTranslucent(windowClass).doTest(); in main()
57 public PerPixelTranslucent(Class windowClass) throws Exception { in PerPixelTranslucent() argument
58 super(windowClass, 1.0f, 0.5f, false); in PerPixelTranslucent()
H A DPerPixelTranslucentGradient.java54 for (Class<Window> windowClass: WINDOWS_TO_TEST) in main()
55 new PerPixelTranslucentGradient(windowClass).doTest(); in main()
58 public PerPixelTranslucentGradient(Class windowClass) throws Exception { in PerPixelTranslucentGradient() argument
59 super(windowClass, 1.0f, 0f, true); in PerPixelTranslucentGradient()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/javax/swing/JWindow/ShapedAndTranslucentWindows/
H A DPerPixelTranslucent.java53 for (Class<Window> windowClass: WINDOWS_TO_TEST) in main()
54 new PerPixelTranslucent(windowClass).doTest(); in main()
57 public PerPixelTranslucent(Class windowClass) throws Exception { in PerPixelTranslucent() argument
58 super(windowClass, 1.0f, 0.5f, false); in PerPixelTranslucent()
H A DPerPixelTranslucentGradient.java54 for (Class<Window> windowClass: WINDOWS_TO_TEST) in main()
55 new PerPixelTranslucentGradient(windowClass).doTest(); in main()
58 public PerPixelTranslucentGradient(Class windowClass) throws Exception { in PerPixelTranslucentGradient() argument
59 super(windowClass, 1.0f, 0f, true); in PerPixelTranslucentGradient()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/test/javax/swing/JWindow/ShapedAndTranslucentWindows/
H A DPerPixelTranslucent.java50 for (Class<Window> windowClass: WINDOWS_TO_TEST) in main()
51 new PerPixelTranslucent(windowClass).doTest(); in main()
54 public PerPixelTranslucent(Class windowClass) throws Exception { in PerPixelTranslucent() argument
55 super(windowClass, 1.0f, 0.5f, false); in PerPixelTranslucent()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/javax/swing/JWindow/ShapedAndTranslucentWindows/
H A DPerPixelTranslucent.java53 for (Class<Window> windowClass: WINDOWS_TO_TEST) in main()
54 new PerPixelTranslucent(windowClass).doTest(); in main()
57 public PerPixelTranslucent(Class windowClass) throws Exception { in PerPixelTranslucent() argument
58 super(windowClass, 1.0f, 0.5f, false); in PerPixelTranslucent()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/test/javax/swing/JWindow/ShapedAndTranslucentWindows/
H A DPerPixelTranslucent.java50 for (Class<Window> windowClass: WINDOWS_TO_TEST) in main()
51 new PerPixelTranslucent(windowClass).doTest(); in main()
54 public PerPixelTranslucent(Class windowClass) throws Exception { in PerPixelTranslucent() argument
55 super(windowClass, 1.0f, 0.5f, false); in PerPixelTranslucent()

12345678910>>...19