mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-17 20:23:47 -04:00
96 lines
2.6 KiB
C++
Executable File
96 lines
2.6 KiB
C++
Executable File
// Filename: p3dWinSplashWindow.h
|
|
// Created by: drose (17Jun09)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef P3DWINSPLASHWINDOW_H
|
|
#define P3DWINSPLASHWINDOW_H
|
|
|
|
#include "p3d_plugin_common.h"
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include "p3dSplashWindow.h"
|
|
#include "p3d_lock.h"
|
|
|
|
#include <windows.h>
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : P3DWinSplashWindow
|
|
// Description : This is the Windows implementation of the
|
|
// initial-download window.
|
|
////////////////////////////////////////////////////////////////////
|
|
class P3DWinSplashWindow : public P3DSplashWindow {
|
|
public:
|
|
P3DWinSplashWindow(P3DInstance *inst);
|
|
virtual ~P3DWinSplashWindow();
|
|
|
|
virtual void set_wparams(const P3DWindowParams &wparams);
|
|
virtual void set_image_filename(const string &image_filename,
|
|
bool image_filename_temp);
|
|
virtual void set_install_label(const string &install_label);
|
|
virtual void set_install_progress(double install_progress);
|
|
|
|
static void register_window_class();
|
|
static void unregister_window_class();
|
|
|
|
private:
|
|
void start_thread();
|
|
void stop_thread();
|
|
|
|
private:
|
|
// These methods run only within the window thread.
|
|
void thread_run();
|
|
static DWORD WINAPI win_thread_run(LPVOID data);
|
|
|
|
void make_window();
|
|
void make_progress_bar();
|
|
void update_install_label(const string &install_label);
|
|
void update_image_filename(const string &image_filename,
|
|
bool image_filename_temp);
|
|
void close_window();
|
|
|
|
void paint_window(HDC dc);
|
|
LONG window_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam);
|
|
static LONG WINAPI st_window_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam);
|
|
|
|
private:
|
|
bool _got_install;
|
|
bool _image_filename_changed;
|
|
string _image_filename;
|
|
bool _image_filename_temp;
|
|
bool _install_label_changed;
|
|
string _install_label;
|
|
double _install_progress;
|
|
LOCK _install_lock;
|
|
|
|
int _loop_started;
|
|
|
|
bool _thread_continue;
|
|
bool _thread_running;
|
|
HANDLE _thread;
|
|
DWORD _thread_id;
|
|
HWND _hwnd;
|
|
HBITMAP _bitmap;
|
|
int _bitmap_width, _bitmap_height;
|
|
HWND _progress_bar;
|
|
HWND _text_label;
|
|
|
|
static bool _registered_window_class;
|
|
};
|
|
|
|
#include "p3dWinSplashWindow.I"
|
|
|
|
#endif // _WIN32
|
|
|
|
#endif
|