Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-01-24Fixed up the code so it compiles. (Basically added one more arg toKent Mein
GHOST_CreateWindow) Kent
2003-01-24fixed 3 warnings...Kent Mein
One uninitalized var and 2 unused vars. Kent
2003-01-24Fixed doxygen so it would run again for ghost....Kent Mein
My first time using it so I may have done it wrong but it produces the docs now and it didn't before so maybe someone else wants to look at it ;) Kent
2003-01-24First light of mouse wheel support.Maarten Gribnau
Only working (soso) on osx. Maarten
2003-01-12Hello,Francis Laurence
*Fixed boolean buglet in the bsp lib. I have not committed any libraries so you'll have to do this to see the changes in blender. *Got the bsp test program working again with the new GHOST createWindow interface. *(Visual C++) Modfied some of the dsp in the intern library to NOT prompt when overwirting old libs and header files. This is the /Y option after XCOPY Cheers Laurence.
2003-01-04Workaround for the header file copying dependency hellHans Lambermont
2003-01-02Added fix for invisible size widget on OSX.Maarten Gribnau
It's still behind a define because it does not work with blender (player and gears work fine). Maarten
2003-01-02Added mouse down event when window was activated byMaarten Gribnau
clicking on it. The mouse up was already generated. They are now balanced by mouse downs. The behaviour of the OSX target now matches that of the WIN32 target. Maarten
2003-01-02Fix for lots of window size events during window dragMaarten Gribnau
Maarten
2003-01-02Enabled event printer in debug target to trace event handling in ghost.Maarten Gribnau
Maarten
2003-01-02Removed injust assertion failure when clicking on the menu bar. Debug target ↵Maarten Gribnau
would complain about an invalid window. Maarten
2003-01-01Added test for events pending for windows already disposed. These events are ↵Maarten Gribnau
removed from the event stack now. Maarten
2003-01-01Removed unused vars.Maarten Gribnau
Maarten
2003-01-01Fixed ghost full-screen problemMaarten Gribnau
After switching back from full-screen, the active window is returned to the one active before full-screen mode was entered. Maarten
2003-01-01Fixed some documentation errorsMaarten Gribnau
Maarten
2003-01-01I added the two patches Chris and I pointed too back in Nov.Kent Mein
(Adding Window Hints and giving the window input focus after it has been raised.) Kent -- mein@cs.umn.edu
2002-12-29Replaced old doxygen config file with two new ones:Maarten Gribnau
ghost_all.cfg to generate doxygen documentation for all of ghost. ghost_interface.cfg to generate docs for the interface only. Maarten
2002-12-29Removed those extra CVS tag lines in the header files of ghost (now I know whatMaarten Gribnau
Gilles meant) and added some extra doxygen tags I had lying around. Removed the cocoa file since it was rubbish. Maarten
2002-12-26WooHoo me again ;)Kent Mein
I took out the following from the includes in the intern dir that still had it: -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif Kent -- mein@cs.umn.edu
2002-12-19-static void SleepTillEvent(Display *display, GHOST_TUns64 maxSleep) {Kent Mein
+static void SleepTillEvent(Display *display, GHOST_TInt64 maxSleep) { maxSleep is checked against -1 so it needs to have a sign. This could even fix some stability problems since -1 is passed in sometimes in the code. Kent -- mein@cs.umn.edu
2002-12-16Fixed the files so they compile...Kent Mein
Had to add an argument to Create_window... (it was missing the sterio flag) Also cleaned up some variable overloading warnings... (i.e. window shadows previous def) Kent
2002-12-14Corrected intern lib names so blendercreator.dsp can find them.Simon Clitherow
Previous commit broke this. --aphex
2002-12-13And the rest! ;) --aphexSimon Clitherow
2002-11-25Yes I did it again ;)Kent Mein
added the following 3 lines to everything in the intern dir: #ifdef HAVE_CONFIG_H #include <config.h> #endif Kent -- mein@cs.umn.edu
2002-11-09Added almost all projects in intern to the main MSVC project for intern (inMaarten Gribnau
intern/make/msvc_6_0. Changed paths in all these files to build to lib/windows and use obj/window/intern for object files and other temporary stuff. Added project files for guardedalloc and blenkey (in keymaker directory). blenkey still assumes openssl being installed in lib/windows. The only thing not automated is is the frozen Python stuff. Maarten
2002-11-08Updated MSVC GHOST project like the string project and added it to theMaarten Gribnau
intern MSVC workspace Maarten
2002-11-08Added extra ranlib on libary files after being copied to the lib tree for ↵Maarten Gribnau
OSX only. This saves other OSX developers the trouble of manually running ranlib. This is not a good solution (because I don't know the correct one) but it works. Maarten
2002-10-30fixed spacing in the headers to get rid of some warnings and some otherKent Mein
little minor spacing issues.
2002-10-12Initial revisionv2.25Hans Lambermont