repo
string
commit
string
message
string
diff
string
rgee/HFOSS-Dasher
e5ee6fe14f733b19b203200038f53f42160a90c8
Made file loading actually work consistently. Added alternative usage pattern for Word Generators. Updated documentation on both Game Module and Word Generators
diff --git a/Src/DasherCore/FileWordGenerator.cpp b/Src/DasherCore/FileWordGenerator.cpp index fe9fbd6..60601c8 100644 --- a/Src/DasherCore/FileWordGenerator.cpp +++ b/Src/DasherCore/FileWordGenerator.cpp @@ -1,55 +1,67 @@ #include "FileWordGenerator.h" using namespace Dasher; bool CFileWordGenerator::Generate...
rgee/HFOSS-Dasher
c7f08546b709a24eb045e165f9d4344793f85cb4
Added usage documentation to Word Generator base class and File Word Generator
diff --git a/Src/DasherCore/FileWordGenerator.h b/Src/DasherCore/FileWordGenerator.h index d10ff3e..f024b4e 100644 --- a/Src/DasherCore/FileWordGenerator.h +++ b/Src/DasherCore/FileWordGenerator.h @@ -1,92 +1,108 @@ #ifndef __FileWordGenerator_h__ #define __FileWordGenerator_h__ #include <string> #include <iostre...
rgee/HFOSS-Dasher
2e78055831905db8e66f2a18d49f7f17ccea60c8
Made generate now private. Implementation classes now responsible for when and how they generate/regenerate.
diff --git a/Src/DasherCore/WordGeneratorBase.h b/Src/DasherCore/WordGeneratorBase.h index 857816a..60b47e1 100644 --- a/Src/DasherCore/WordGeneratorBase.h +++ b/Src/DasherCore/WordGeneratorBase.h @@ -1,57 +1,58 @@ #ifndef __WordGeneratorBase_h__ #define __WordGeneratorBase_h__ #include <string> using namespace s...
rgee/HFOSS-Dasher
4495725816c595a18f4aaa6a5e94ab7976dd4ae4
Made file loader workflow more logical. Details to be added to documentation. Still does not work after first 3 words.
diff --git a/Src/DasherCore/FileWordGenerator.cpp b/Src/DasherCore/FileWordGenerator.cpp index 22ae34d..fe9fbd6 100644 --- a/Src/DasherCore/FileWordGenerator.cpp +++ b/Src/DasherCore/FileWordGenerator.cpp @@ -1,59 +1,55 @@ #include "FileWordGenerator.h" using namespace Dasher; -bool CFileWordGenerator::Generate()...
rgee/HFOSS-Dasher
f1b43b2b4a5f4bed4b1bc5a8ad7012ef8ceacb26
Created a test directory that links with Gtest
diff --git a/Testing/dasher_tests/EventTest.cpp b/Testing/dasher_tests/EventTest.cpp new file mode 100755 index 0000000..4cfab05 --- /dev/null +++ b/Testing/dasher_tests/EventTest.cpp @@ -0,0 +1,5 @@ +#include "gtest/gtest.h" + +TEST(EventTest, simpletest) { + EXPECT_EQ(1, 1); +} diff --git a/Testing/dasher_tests/Makef...
rgee/HFOSS-Dasher
2628cfedc223dff6949e339372c3ad0cba6233da
Reworked FileWordGenerator and GameModule should be drawing from it for words. However, there's an issue with file loading to be resolved soon.
diff --git a/Src/DasherCore/DasherInterfaceBase.cpp b/Src/DasherCore/DasherInterfaceBase.cpp index ceeac7b..88cca61 100644 --- a/Src/DasherCore/DasherInterfaceBase.cpp +++ b/Src/DasherCore/DasherInterfaceBase.cpp @@ -1,1164 +1,1165 @@ // DasherInterfaceBase.cpp // // Copyright (c) 2008 The Dasher Team // // This f...
rgee/HFOSS-Dasher
9e283614ac35fbfc91b63e5cb53090ac0471dcfe
Game Mode now looks for the appropriate letter after typing some.
diff --git a/Src/DasherCore/GameModule.cpp b/Src/DasherCore/GameModule.cpp index d14614f..1a3c63f 100644 --- a/Src/DasherCore/GameModule.cpp +++ b/Src/DasherCore/GameModule.cpp @@ -1,99 +1,100 @@ #include "GameModule.h" using namespace Dasher; void CGameModule::HandleEvent(Dasher::CEvent *pEvent) { switch...
rgee/HFOSS-Dasher
815126f80b87d54dfdfab7b20d49d5d2f678755f
Fixed bug where listeners were not properly being added to the event system.
diff --git a/Src/DasherCore/EventHandler.cpp b/Src/DasherCore/EventHandler.cpp index 285caeb..adbdb25 100644 --- a/Src/DasherCore/EventHandler.cpp +++ b/Src/DasherCore/EventHandler.cpp @@ -1,112 +1,116 @@ #include "../Common/Common.h" #include "EventHandler.h" #include "DasherComponent.h" #include "DasherInterfac...
rgee/HFOSS-Dasher
b31ac5a0c2c2be35684ea3c946428fb03e473729
Game mode now draws a crosshair over the target letter.
diff --git a/Src/DasherCore/GameModule.cpp b/Src/DasherCore/GameModule.cpp index 900c336..cd901ee 100644 --- a/Src/DasherCore/GameModule.cpp +++ b/Src/DasherCore/GameModule.cpp @@ -1,72 +1,100 @@ #include "GameModule.h" using namespace Dasher; void CGameModule::HandleEvent(Dasher::CEvent *pEvent) { - switch(pE...
rgee/HFOSS-Dasher
86fb3796ac79b72fe10c2db0e9df5ea65c0815eb
Wrote a function that draws lines in screen space so that we can have visuals that don't resize with dasher coords.
diff --git a/Src/DasherCore/DasherView.cpp b/Src/DasherCore/DasherView.cpp index 08b9f6a..3701eac 100644 --- a/Src/DasherCore/DasherView.cpp +++ b/Src/DasherCore/DasherView.cpp @@ -1,299 +1,317 @@ // DasherView.cpp // // Copyright (c) 2008 The Dasher Team // // This file is part of Dasher. // // Dasher is free s...
rgee/HFOSS-Dasher
0c17d3550cf7c212e5ec2e0d1cb050c69da16678
The new event system is now compiling, and it appears to be working properly at runtime. Still need to test/add documentation.
diff --git a/Src/DasherCore/Event.h b/Src/DasherCore/Event.h index 221aebd..e3303ce 100644 --- a/Src/DasherCore/Event.h +++ b/Src/DasherCore/Event.h @@ -1,181 +1,179 @@ #ifndef __event_h__ #define __event_h__ // Classes representing different event types. #include <string> #include "DasherTypes.h" namespace...
rgee/HFOSS-Dasher
8ceee4c58e1698fe936a39df305ab5463552192b
Started work to correcy problems in the pointer arrow's behavior. Does not compile right now - lots of incomplete stuff.
diff --git a/Src/DasherCore/GameModule.cpp b/Src/DasherCore/GameModule.cpp index 5d41f21..900c336 100644 --- a/Src/DasherCore/GameModule.cpp +++ b/Src/DasherCore/GameModule.cpp @@ -1,67 +1,72 @@ #include "GameModule.h" using namespace Dasher; void CGameModule::HandleEvent(Dasher::CEvent *pEvent) { switch(pEv...
rgee/HFOSS-Dasher
65634bc79dab27b8d788ad6d32b3b236e901a32e
Doing more fixes to the new event system. Not done yet - won't compile.
diff --git a/Src/DasherCore/EventHandler.cpp b/Src/DasherCore/EventHandler.cpp index e26ca3f..9706b6a 100644 --- a/Src/DasherCore/EventHandler.cpp +++ b/Src/DasherCore/EventHandler.cpp @@ -1,103 +1,108 @@ #include "../Common/Common.h" #include "EventHandler.h" #include "DasherComponent.h" #include "DasherInterf...
rgee/HFOSS-Dasher
9e07b361c5b4b8450e3560a9b22d753b89022af9
Doing more fixed to the event system - this step is not done yet. Won't compile.
diff --git a/Src/DasherCore/EventHandler.cpp b/Src/DasherCore/EventHandler.cpp index e26ca3f..9706b6a 100644 --- a/Src/DasherCore/EventHandler.cpp +++ b/Src/DasherCore/EventHandler.cpp @@ -1,103 +1,108 @@ #include "../Common/Common.h" #include "EventHandler.h" #include "DasherComponent.h" #include "DasherInterf...
rgee/HFOSS-Dasher
99f7b9dc3f7e051d5bb64f9f37a777c9a3c3ab12
Correcting assorted compilation bugs
diff --git a/Src/DasherCore/EventHandler.cpp b/Src/DasherCore/EventHandler.cpp index 332d117..e26ca3f 100644 --- a/Src/DasherCore/EventHandler.cpp +++ b/Src/DasherCore/EventHandler.cpp @@ -1,103 +1,103 @@ #include "../Common/Common.h" #include "EventHandler.h" #include "DasherComponent.h" #include "DasherInterf...
rgee/HFOSS-Dasher
2ee9f6000f8ee10e2e0e7c195d72b121884b782e
Documented iNUM_EVENTS
diff --git a/Src/DasherCore/Event.h b/Src/DasherCore/Event.h index 221aebd..b6f3576 100644 --- a/Src/DasherCore/Event.h +++ b/Src/DasherCore/Event.h @@ -1,181 +1,184 @@ #ifndef __event_h__ #define __event_h__ // Classes representing different event types. #include <string> #include "DasherTypes.h" namespace...
rgee/HFOSS-Dasher
3ee007a274dfe7a4f99950c488459fd7e45bca19
Moved typedef.
diff --git a/Src/DasherCore/EventHandler.h b/Src/DasherCore/EventHandler.h index 5a0089c..4e3d8a9 100644 --- a/Src/DasherCore/EventHandler.h +++ b/Src/DasherCore/EventHandler.h @@ -1,99 +1,103 @@ #ifndef __eventhandler_h__ #define __eventhandler_h__ #include <vector> namespace Dasher { class CEventHandler; ...
rgee/HFOSS-Dasher
23993423d61422c4516cc02ae471c4c21193fe6a
Started work to correct problems in the pointer arrow's behavior
diff --git a/Src/DasherCore/GameModule.cpp b/Src/DasherCore/GameModule.cpp index 5d41f21..900c336 100644 --- a/Src/DasherCore/GameModule.cpp +++ b/Src/DasherCore/GameModule.cpp @@ -1,67 +1,72 @@ #include "GameModule.h" using namespace Dasher; void CGameModule::HandleEvent(Dasher::CEvent *pEvent) { switch(pEv...
rgee/HFOSS-Dasher
cde3bab65d6ea5391fbf360700e9691c316af4d8
Event system should be complete. Keeping it in a branch for testing.
diff --git a/Src/DasherCore/EventHandler.cpp b/Src/DasherCore/EventHandler.cpp index a95740b..332d117 100644 --- a/Src/DasherCore/EventHandler.cpp +++ b/Src/DasherCore/EventHandler.cpp @@ -1,131 +1,103 @@ #include "../Common/Common.h" #include "EventHandler.h" #include "DasherComponent.h" #include "DasherInterf...
rgee/HFOSS-Dasher
6695a99070e796d550b1ba6cca5c290e1d6756c5
Added whitespace to GameModule.cpp - don't plan to make other changes to game code on this branch.
diff --git a/Src/DasherCore/GameModule.cpp b/Src/DasherCore/GameModule.cpp index 5d41f21..4818633 100644 --- a/Src/DasherCore/GameModule.cpp +++ b/Src/DasherCore/GameModule.cpp @@ -1,67 +1,67 @@ #include "GameModule.h" using namespace Dasher; void CGameModule::HandleEvent(Dasher::CEvent *pEvent) { switch(pEv...
rgee/HFOSS-Dasher
30f1282e45875ef7cd67c7f64beea79eb49fa47b
Game Module now draws an arrow that points to target letters. There are, however, still significant issues to work out with it's behavior. Removed g_pLogger->Log() calls from places we were previously experimenting, and added documentation to DasherView::DasherPolyArrow()
diff --git a/Src/DasherCore/DasherInterfaceBase.cpp b/Src/DasherCore/DasherInterfaceBase.cpp index 5412ab2..ec690e2 100644 --- a/Src/DasherCore/DasherInterfaceBase.cpp +++ b/Src/DasherCore/DasherInterfaceBase.cpp @@ -369,795 +369,794 @@ void CDasherInterfaceBase::InterfaceEventHandler(Dasher::CEvent *pEvent) { ...
rgee/HFOSS-Dasher
590d512bb7e6470240315ad27da06067dba3d0b1
Added ability to add listeners. Set up new version of listener queue system.
diff --git a/Src/DasherCore/Event.h b/Src/DasherCore/Event.h index e3303ce..221aebd 100644 --- a/Src/DasherCore/Event.h +++ b/Src/DasherCore/Event.h @@ -1,179 +1,181 @@ #ifndef __event_h__ #define __event_h__ // Classes representing different event types. #include <string> #include "DasherTypes.h" namespace...
rgee/HFOSS-Dasher
13143e0880d064dd755c5527cc44555e0629c603
wrote function to register component for a specific event. Eventhandler now maintains a vector of vectors of listeners for each event. Notification not functional yet.
diff --git a/Src/DasherCore/EventHandler.cpp b/Src/DasherCore/EventHandler.cpp index 2b9cafb..f3f4a04 100644 --- a/Src/DasherCore/EventHandler.cpp +++ b/Src/DasherCore/EventHandler.cpp @@ -1,79 +1,90 @@ #include "../Common/Common.h" #include "EventHandler.h" #include "DasherComponent.h" #include "DasherInterfac...
rgee/HFOSS-Dasher
3009eae517c045e1a9724688681c222350abf8c6
Forgot to assign Text draw events their proper event type. Fixed that.
diff --git a/Src/DasherCore/Event.h b/Src/DasherCore/Event.h index 9af0f4a..e3303ce 100644 --- a/Src/DasherCore/Event.h +++ b/Src/DasherCore/Event.h @@ -1,177 +1,179 @@ #ifndef __event_h__ #define __event_h__ // Classes representing different event types. #include <string> #include "DasherTypes.h" namespace...
rgee/HFOSS-Dasher
e159abda0d5219072f1eb7d10c6f77a983777989
Fixed more bugs blocking compilation
diff --git a/Src/DasherCore/DasherViewSquare.cpp b/Src/DasherCore/DasherViewSquare.cpp index d244d58..c89cb47 100644 --- a/Src/DasherCore/DasherViewSquare.cpp +++ b/Src/DasherCore/DasherViewSquare.cpp @@ -1,729 +1,728 @@ // DasherViewSquare.cpp // // Copyright (c) 2008 The Dasher Team // // This file is part of Da...
rgee/HFOSS-Dasher
50dac4ba3fa066e1a254308b86b3752e038387d3
Continued de-bugging GameModule code.
diff --git a/Src/DasherCore/DasherInterfaceBase.cpp b/Src/DasherCore/DasherInterfaceBase.cpp index f341066..5412ab2 100644 --- a/Src/DasherCore/DasherInterfaceBase.cpp +++ b/Src/DasherCore/DasherInterfaceBase.cpp @@ -449,716 +449,715 @@ void CDasherInterfaceBase::Pause() { m_pEventHandler->InsertEvent(&oEvent); #...
rgee/HFOSS-Dasher
4d0ae96847211396e671cc8d60cbdca250b10425
Gave TextDraw events a pointer to the view
diff --git a/Src/DasherCore/DasherViewSquare.cpp b/Src/DasherCore/DasherViewSquare.cpp index bb963e5..d60dee3 100644 --- a/Src/DasherCore/DasherViewSquare.cpp +++ b/Src/DasherCore/DasherViewSquare.cpp @@ -1,728 +1,728 @@ // DasherViewSquare.cpp // // Copyright (c) 2008 The Dasher Team // // This file is part of Da...
rgee/HFOSS-Dasher
428970066a96bf0d87e49bf408fb2fbcac96d3c3
Made some changes to GameModule - still getting 'undefined reference to vtable' error
diff --git a/Src/DasherCore/GameModule.cpp b/Src/DasherCore/GameModule.cpp index becf380..0d0da57 100644 --- a/Src/DasherCore/GameModule.cpp +++ b/Src/DasherCore/GameModule.cpp @@ -1,51 +1,55 @@ #include "GameModule.h" +using namespace Dasher; + void CGameModule::HandleEvent(Dasher::CEvent *pEvent) { - g_pLogger-...
rgee/HFOSS-Dasher
8d237cb6bbaf364a0798c6b6858b889c1fa72cc8
Game module SHOULD now draw an arrow to the target character, if it exists
diff --git a/Src/DasherCore/GameModule.cpp b/Src/DasherCore/GameModule.cpp index e4e4395..3a6a88a 100644 --- a/Src/DasherCore/GameModule.cpp +++ b/Src/DasherCore/GameModule.cpp @@ -1,45 +1,48 @@ #include "GameModule.h" void CGameModule::HandleEvent(Dasher::CEvent *pEvent) { switch(pEvent->m_iEventType) { ...
rgee/HFOSS-Dasher
63678f433494cf09bca514e28be743627d39dc83
Forward declared new event
diff --git a/Src/DasherCore/Event.h b/Src/DasherCore/Event.h index 7e56c54..2194ceb 100644 --- a/Src/DasherCore/Event.h +++ b/Src/DasherCore/Event.h @@ -1,169 +1,170 @@ #ifndef __event_h__ #define __event_h__ // Classes representing different event types. #include <string> #include "DasherTypes.h" namespace...
rgee/HFOSS-Dasher
52f750678f34d49bfd1b7a4b01e6e00fa821e749
Successfully hooking CGameModule into the module manager, event, and rendering systems. Struggling with a weird inheritance problem in CGameModule::HandleEvent.
diff --git a/Src/DasherCore/DasherInterfaceBase.cpp b/Src/DasherCore/DasherInterfaceBase.cpp index db7cd91..f341066 100644 --- a/Src/DasherCore/DasherInterfaceBase.cpp +++ b/Src/DasherCore/DasherInterfaceBase.cpp @@ -92,1076 +92,1073 @@ CDasherInterfaceBase::CDasherInterfaceBase() { m_pDasherModel = NULL; m_Dashe...
rgee/HFOSS-Dasher
3da388a6fc6654217847beadd39f16d36e4ca144
Created a new event that represents text draw events to give us access to the location of text drawn the screen. GameModule now listens for this event.
diff --git a/Src/DasherCore/DasherViewSquare.cpp b/Src/DasherCore/DasherViewSquare.cpp index f0ec7ad..bb963e5 100644 --- a/Src/DasherCore/DasherViewSquare.cpp +++ b/Src/DasherCore/DasherViewSquare.cpp @@ -1,724 +1,729 @@ // DasherViewSquare.cpp // // Copyright (c) 2008 The Dasher Team // // This file is part of Da...
rgee/HFOSS-Dasher
f3123f614e50cd4d378b529d9aa1fb6f911617c9
Continued work integrating the game module into dasher - still have some work to do. Have some cout statements lying around
diff --git a/Src/DasherCore/DasherInterfaceBase.cpp b/Src/DasherCore/DasherInterfaceBase.cpp index 0a1fc60..db7cd91 100644 --- a/Src/DasherCore/DasherInterfaceBase.cpp +++ b/Src/DasherCore/DasherInterfaceBase.cpp @@ -1,1156 +1,1167 @@ // DasherInterfaceBase.cpp // // Copyright (c) 2008 The Dasher Team // // This f...
rgee/HFOSS-Dasher
d378ef49f4749c9c79a9fefe7d41ba7eaf2292b7
Modified makefile to compile generators
diff --git a/Src/DasherCore/Makefile.am b/Src/DasherCore/Makefile.am index b322d78..4bd4363 100644 --- a/Src/DasherCore/Makefile.am +++ b/Src/DasherCore/Makefile.am @@ -1,166 +1,169 @@ SUBDIRS = LanguageModelling noinst_LIBRARIES = libdashercore.a libdasherprefs.a libdasherprefs_a_SOURCES = \ Parameters.h \ ...
rgee/HFOSS-Dasher
a39cec2f357290917e62d282eaba70b8b48ea268
Wrote a word generator that abstracts away the logic for generating words for any purpose. Will be used in game mode to generate target strings from a file.
diff --git a/Src/DasherCore/FileWordGenerator.cpp b/Src/DasherCore/FileWordGenerator.cpp new file mode 100644 index 0000000..8dde340 --- /dev/null +++ b/Src/DasherCore/FileWordGenerator.cpp @@ -0,0 +1,35 @@ +#include "FileWordGenerator.h" + +bool CFileWordGenerator::Generate() { + if(!m_bWordsReady) { + ifstream file_...
rgee/HFOSS-Dasher
7d3b62344812308ba582951f40c5c1c3e0f6073e
Added Game Module to makefile
diff --git a/Src/DasherCore/Makefile.am b/Src/DasherCore/Makefile.am index ae4b1b1..b322d78 100644 --- a/Src/DasherCore/Makefile.am +++ b/Src/DasherCore/Makefile.am @@ -1,164 +1,166 @@ SUBDIRS = LanguageModelling noinst_LIBRARIES = libdashercore.a libdasherprefs.a libdasherprefs_a_SOURCES = \ Parameters.h \ ...
rgee/HFOSS-Dasher
bbc07b623f43404e294d78508b4a222e7c607b17
Modified DasherInterfaceBase to integrate the game module in. Not sure whether it compiles or not - still having trouble in that arena.
diff --git a/Src/DasherCore/DasherInterfaceBase.cpp b/Src/DasherCore/DasherInterfaceBase.cpp index 09ea7bc..0a1fc60 100644 --- a/Src/DasherCore/DasherInterfaceBase.cpp +++ b/Src/DasherCore/DasherInterfaceBase.cpp @@ -1,1138 +1,1156 @@ // DasherInterfaceBase.cpp // // Copyright (c) 2008 The Dasher Team // // This f...
rgee/HFOSS-Dasher
742e86903b44718875f2bad4065ec5cb4a260b90
Added string partitioning functions to GameModule
diff --git a/Src/DasherCore/GameModule.cpp b/Src/DasherCore/GameModule.cpp index e69de29..9b73984 100644 --- a/Src/DasherCore/GameModule.cpp +++ b/Src/DasherCore/GameModule.cpp @@ -0,0 +1,38 @@ +#include "GameModule.h" + +void CGameModule::HandleEvent(Dasher::CEvent *pEvent) { + switch(pEvent->m_iEventType) + { + c...
rgee/HFOSS-Dasher
1bf05ae2dbb0308a33c9b277671cd9efb3ce0aa7
Added method declaration for DecorateView to GameModule.h
diff --git a/Src/DasherCore/GameModule.h b/Src/DasherCore/GameModule.h index 1d82437..48cf25a 100644 --- a/Src/DasherCore/GameModule.h +++ b/Src/DasherCore/GameModule.h @@ -1,61 +1,61 @@ // GameModule.h #ifndef GAME_MODULE_H #define GAME_MODULE_H #include <string> using namespace std; #include "DasherModule...
rgee/HFOSS-Dasher
b2e0ec91bf2acdf4eb10e3480d735858d4287743
Created CPP for GameModule and wrote event handler
diff --git a/Src/DasherCore/GameModule.cpp b/Src/DasherCore/GameModule.cpp new file mode 100644 index 0000000..e69de29 diff --git a/Src/DasherCore/GameModule.h b/Src/DasherCore/GameModule.h index 1d82437..fe9ca7a 100644 --- a/Src/DasherCore/GameModule.h +++ b/Src/DasherCore/GameModule.h @@ -1,61 +1,64 @@ // GameModule...
rgee/HFOSS-Dasher
6b0284660b423e06eb1b36dcb48b9a756995ab1f
Wrote skeleton for game mode module. COMPLETELY UNTESTED. DO NOT PULL. MAY NOT COMPILE UNTIL 6/15. I just pushed to my repo to save changes somewhere
diff --git a/Src/DasherCore/GameModule.h b/Src/DasherCore/GameModule.h new file mode 100644 index 0000000..1d82437 --- /dev/null +++ b/Src/DasherCore/GameModule.h @@ -0,0 +1,61 @@ +// GameModule.h + +#ifndef GAME_MODULE_H +#define GAME_MODULE_H + +#include <string> +using namespace std; + +#include "DasherModule.h" +#i...
rgee/HFOSS-Dasher
0b2c40efcab9aef6966496829e6e63fc711286c7
Fix 578d5f151ef0e705f4d52908e30439c20593aa21
diff --git a/Src/Gtk2/DasherControl.cpp b/Src/Gtk2/DasherControl.cpp index 96458e5..e743238 100644 --- a/Src/Gtk2/DasherControl.cpp +++ b/Src/Gtk2/DasherControl.cpp @@ -1,625 +1,625 @@ #include "../Common/Common.h" #ifdef HAVE_CONFIG_H #include <config.h> #endif #include <cstring> #include <iostream> #include ...
rgee/HFOSS-Dasher
5050cc867ec3451724218d0f6a98008e6c670144
Make CDasherNode::m_iOffset private, rather than protected
diff --git a/Src/DasherCore/AlphabetManager.cpp b/Src/DasherCore/AlphabetManager.cpp index a39c35d..bd5ce3e 100644 --- a/Src/DasherCore/AlphabetManager.cpp +++ b/Src/DasherCore/AlphabetManager.cpp @@ -1,461 +1,461 @@ // AlphabetManager.cpp // // Copyright (c) 2007 The Dasher Team // // This file is part of Dasher....
rgee/HFOSS-Dasher
6db5cf3e61d31f88077602f9189f1e2023ef18c8
Remove SDisplayInfo substruct of CDasherNode; hide m_iOffset & set in c'tor
diff --git a/Src/DasherCore/AlphabetManager.cpp b/Src/DasherCore/AlphabetManager.cpp index b11f1e6..a39c35d 100644 --- a/Src/DasherCore/AlphabetManager.cpp +++ b/Src/DasherCore/AlphabetManager.cpp @@ -1,486 +1,461 @@ // AlphabetManager.cpp // // Copyright (c) 2007 The Dasher Team // // This file is part of Dasher....
rgee/HFOSS-Dasher
8b94ba0fa71930c25e7e593964f30dd3d4ca24f1
Avoid creating group nodes which will only have one child
diff --git a/Src/DasherCore/AlphabetManager.cpp b/Src/DasherCore/AlphabetManager.cpp index d8b5aed..b11f1e6 100644 --- a/Src/DasherCore/AlphabetManager.cpp +++ b/Src/DasherCore/AlphabetManager.cpp @@ -1,467 +1,486 @@ // AlphabetManager.cpp // // Copyright (c) 2007 The Dasher Team // // This file is part of Dasher....
rgee/HFOSS-Dasher
92b69ceee95c2f289d04a5c620be7fd7bd6d9a69
iPhone tidies to viewcontrollers
diff --git a/Src/iPhone/Classes/InputMethodSelector.mm b/Src/iPhone/Classes/InputMethodSelector.mm index 403cd09..7474fc3 100644 --- a/Src/iPhone/Classes/InputMethodSelector.mm +++ b/Src/iPhone/Classes/InputMethodSelector.mm @@ -1,256 +1,256 @@ // // InputMethodSelector.mm // Dasher // // Created by Alan Lawren...
rgee/HFOSS-Dasher
c4a51bd43a54ab835b401e88dcd1bc5fa55c1fde
Rename IsNodeVisible to IsSpaceAroundNode, and make it's meaning consistent!
diff --git a/Src/DasherCore/DasherModel.cpp b/Src/DasherCore/DasherModel.cpp index 0dc3a75..5430cb8 100644 --- a/Src/DasherCore/DasherModel.cpp +++ b/Src/DasherCore/DasherModel.cpp @@ -1,807 +1,810 @@ // DasherModel.cpp // // Copyright (c) 2008 The Dasher Team // // This file is part of Dasher. // // Dasher is f...
rgee/HFOSS-Dasher
6a92981fde4b8b1746e8d3a4dcd0e7ad57edc55e
Remove CDasherNode::m_iNumSymbols
diff --git a/Src/DasherCore/AlphabetManager.cpp b/Src/DasherCore/AlphabetManager.cpp index f7b1132..d8b5aed 100644 --- a/Src/DasherCore/AlphabetManager.cpp +++ b/Src/DasherCore/AlphabetManager.cpp @@ -1,469 +1,467 @@ // AlphabetManager.cpp // // Copyright (c) 2007 The Dasher Team // // This file is part of Dasher....
rgee/HFOSS-Dasher
d86356169c28256cdccdb01427f3dc93f3e81315
Always Leave() nodes we Enter() - inc. in InitialiseAtOffset & ~CDasherModel
diff --git a/Src/DasherCore/DasherModel.cpp b/Src/DasherCore/DasherModel.cpp index 133f696..7d08ddb 100644 --- a/Src/DasherCore/DasherModel.cpp +++ b/Src/DasherCore/DasherModel.cpp @@ -1,798 +1,799 @@ // DasherModel.cpp // // Copyright (c) 2008 The Dasher Team // // This file is part of Dasher. // // Dasher is f...
rgee/HFOSS-Dasher
b445d26a634632ee1238043f2d6b4ba10190788c
Code tidy to StylusFilter, missed from 13563f987132a61ff53ae36c80054ce32e2e6be8
diff --git a/Src/DasherCore/StylusFilter.cpp b/Src/DasherCore/StylusFilter.cpp index 1232f91..aa83b1a 100644 --- a/Src/DasherCore/StylusFilter.cpp +++ b/Src/DasherCore/StylusFilter.cpp @@ -1,46 +1,42 @@ #include "../Common/Common.h" #include "StylusFilter.h" #include "DasherInterfaceBase.h" #include "Event.h" us...
rgee/HFOSS-Dasher
578d5f151ef0e705f4d52908e30439c20593aa21
Fix remaining GSEAL_ENABLE issues (#614995). Remove CCanvas' copy of DasherScreen's width and height.
diff --git a/Src/Gtk2/Canvas.cpp b/Src/Gtk2/Canvas.cpp index 65b5dc3..11d4a00 100644 --- a/Src/Gtk2/Canvas.cpp +++ b/Src/Gtk2/Canvas.cpp @@ -1,528 +1,526 @@ #include "../Common/Common.h" #include "Canvas.h" #include "DasherControl.h" #include "../DasherCore/DasherTypes.h" using namespace Dasher; -CCanvas::...
roblillack/wmaker
1922253559d98dd834ebbae3b4f65ed08109ca2f
Improve icon scaling algorithm to scale down more often and make this the default. (#5)
diff --git a/src/defaults.c b/src/defaults.c index 2f68539..d5f8242 100644 --- a/src/defaults.c +++ b/src/defaults.c @@ -1,880 +1,880 @@ /* defaults.c - manage configuration through defaults db * * Window Maker window manager * * Copyright (c) 1997-2003 Alfredo K. Kojima * Copyright (c) 1998-2003 Dan Pasc...
roblillack/wmaker
ea0ca51e3496cd3c209cc8e41b37122b0872cc96
Fix default window attributes that lead to all app menus not working. (#4)
diff --git a/WindowMaker/Defaults/WMWindowAttributes.in b/WindowMaker/Defaults/WMWindowAttributes.in index f182e51..d2886c6 100644 --- a/WindowMaker/Defaults/WMWindowAttributes.in +++ b/WindowMaker/Defaults/WMWindowAttributes.in @@ -1,7 +1,7 @@ { Logo.WMDock = {Icon = GNUstepGlow.#extension#;}; Logo.WMPanel = {I...
roblillack/wmaker
bf86d4f4ad2361dc885769c10ff3ce14a65047fa
Adds a space of 3 pixels next to the dock--like in NeXTSTEP/OPENSTEP. (#3)
diff --git a/src/wconfig.h.in b/src/wconfig.h.in index 46c3059..b4117dc 100644 --- a/src/wconfig.h.in +++ b/src/wconfig.h.in @@ -1,406 +1,406 @@ /* * wconfig.h- default configuration and definitions + compile time options * * WindowMaker window manager * * Copyright (c) 1997-2003 Alfredo K. Kojima * * ...
roblillack/wmaker
f0a635b481676ff3ab8446d5bd98f91dbbb6aafd
wings: Use the GNUstep/OPENSTEP/menu background color as default gray. (#2)
diff --git a/WINGs/wcolor.c b/WINGs/wcolor.c index a02c182..1b21ce3 100644 --- a/WINGs/wcolor.c +++ b/WINGs/wcolor.c @@ -1,326 +1,326 @@ #include "WINGsP.h" #include "wconfig.h" #include <wraster.h> #define LIGHT_STIPPLE_WIDTH 4 #define LIGHT_STIPPLE_HEIGHT 4 static char LIGHT_STIPPLE_BITS[] = { 0x05, 0...
roblillack/wmaker
cd7bd08adcd723e348013d8c50333fb6a24d9824
Add unicode symbols (the same that are used on MacOS) representing the modifier keys in menus. (#1)
diff --git a/src/xmodifier.c b/src/xmodifier.c index 5208867..13bd41d 100644 --- a/src/xmodifier.c +++ b/src/xmodifier.c @@ -1,338 +1,338 @@ /* Grok X modifier mappings for shortcuts. Most of this code was taken from src/event-Xt.c in XEmacs 20.3-b17. The copyright(s) from the original XEmacs code are included bel...
roblillack/wmaker
09885c7335d3ad32550b0481bdac7db7c55a45d8
Add README for this fork.
diff --git a/README.md b/README.md new file mode 100644 index 0000000..4187221 --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +# What is this? + +Window Maker is a NeXTSTEP-like window manager for the X11 Window System. + +This repository tracks the [original sources](https://repo.or.cz/w/wmaker-crm.git) +but adds some...
roblillack/wmaker
82ab2d2d0681e327845726d3a28f27d68ce7573d
Correct calculation of usable space for reserved area.
diff --git a/src/wmspec.c b/src/wmspec.c index 645cd6c..64eaa05 100644 --- a/src/wmspec.c +++ b/src/wmspec.c @@ -336,1061 +336,1074 @@ static void setSupportedHints(WScreen *scr) atom[i++] = net_wm_window_opacity; atom[i++] = net_frame_extents; atom[i++] = net_wm_name; atom[i++] = net_wm_icon_name; XCha...
roblillack/wmaker
bbf24d1d398e0dbcbfe0be66b5ab358d49b3c803
Correct way for reserved space on multihead environment.
diff --git a/src/wmspec.c b/src/wmspec.c index 57a72d1..645cd6c 100644 --- a/src/wmspec.c +++ b/src/wmspec.c @@ -336,1028 +336,1061 @@ static void setSupportedHints(WScreen *scr) atom[i++] = net_wm_window_opacity; atom[i++] = net_frame_extents; atom[i++] = net_wm_name; atom[i++] = net_wm_icon_name; XCha...
roblillack/wmaker
224cb403a720574a8f824c6a658f326cb2c2f35f
Tippfehler in de.po von WPrefs (WindowMaker)
diff --git a/WPrefs.app/po/de.po b/WPrefs.app/po/de.po index 1b7075f..8a7ec15 100644 --- a/WPrefs.app/po/de.po +++ b/WPrefs.app/po/de.po @@ -310,1025 +310,1025 @@ msgstr "" msgid "Dithering colormap for 8bpp" msgstr "Dithering für 8bpp-Farbpalette" #: ../../WPrefs.app/Configurations.c:364 msgid "" "Number of co...
roblillack/wmaker
1cd8fea4238f78013fd18c79a195b6298a10a5da
Add support for _NET_WM_STATE_FOCUSED
diff --git a/src/wmspec.c b/src/wmspec.c index c2bb35c..57a72d1 100644 --- a/src/wmspec.c +++ b/src/wmspec.c @@ -1,1894 +1,1900 @@ /* wmspec.c-- support for the wm-spec Hints * * Window Maker window manager * * Copyright (c) 1998-2003 Alfredo K. Kojima * * This program is free software; you can redistr...
roblillack/wmaker
a98680cd149606210f776eb68d02cecfc69e61e2
Patch for GetCommandForPid() in osdep_darwin.c
diff --git a/src/osdep_darwin.c b/src/osdep_darwin.c index b3a7b4f..0191749 100644 --- a/src/osdep_darwin.c +++ b/src/osdep_darwin.c @@ -1,97 +1,121 @@ - #include <sys/types.h> #include <sys/sysctl.h> #include <assert.h> #include <stdlib.h> #include <string.h> #include <WINGs/WUtil.h> #include "wconfig.h" ...
roblillack/wmaker
7d423a3a0ff5e0c70bac83585b593b910f627d15
Added Expert option: "Close rootmenu when mouse (left or right) is clicked outside focus.
diff --git a/WPrefs.app/Expert.c b/WPrefs.app/Expert.c index b1a8e9b..157bc39 100644 --- a/WPrefs.app/Expert.c +++ b/WPrefs.app/Expert.c @@ -1,341 +1,344 @@ /* Expert.c- expert user options * * WPrefs - Window Maker Preferences Program * * Copyright (c) 2014 Window Maker Team * Copyright (c) 1998-2003 Alf...
roblillack/wmaker
033d2d9a6facf44c65848513f723c67f07ea875d
Changed Russian translation
diff --git a/WPrefs.app/po/ru.po b/WPrefs.app/po/ru.po index 99a5592..c5dbd06 100644 --- a/WPrefs.app/po/ru.po +++ b/WPrefs.app/po/ru.po @@ -1,1137 +1,1165 @@ # Igor P. Roboul <igorr@russia.crosswinds.net> # Andrew W. Nosenko <awn@bcs.zp.ua> # # Краткий словарь: # options параметр...
roblillack/wmaker
6e2075f3dfb7c9f8ca7ac447d47c715b945dd9c0
Double click on titlebar maximize a window to fullscreen
diff --git a/WPrefs.app/Expert.c b/WPrefs.app/Expert.c index f2cbe09..b1a8e9b 100644 --- a/WPrefs.app/Expert.c +++ b/WPrefs.app/Expert.c @@ -1,338 +1,341 @@ /* Expert.c- expert user options * * WPrefs - Window Maker Preferences Program * * Copyright (c) 2014 Window Maker Team * Copyright (c) 1998-2003 Alf...
roblillack/wmaker
5d2fd7bf7eb652498943279a1c05193f4d203f7a
WPrefs: Create Turkish translation
diff --git a/WPrefs.app/po/Makefile.am b/WPrefs.app/po/Makefile.am index c2363e9..860c605 100644 --- a/WPrefs.app/po/Makefile.am +++ b/WPrefs.app/po/Makefile.am @@ -1,91 +1,91 @@ DOMAIN = WPrefs CATALOGS = @WPREFSMOFILES@ CLEANFILES = $(DOMAIN).pot $(CATALOGS) EXTRA_DIST = bg.po ca.po cs.po de.po es.po et.po ...
roblillack/wmaker
f6742662ecac2b696056d6e4ff8bba3bbe1af2a4
Tell git to ignore files created during i18n preparation
diff --git a/.gitignore b/.gitignore index fc76e1c..96eb11c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,126 +1,136 @@ # These files are generated by the AutoTools *Makefile *Makefile.in .deps/ .libs/ INSTALL aclocal.m4 autom4te.cache* compile config-paths.h config.guess config.h config.h.in config.log ...
roblillack/wmaker
583f66ec4ebb9c8c8c22d7e80bc0c66763596dee
Turn off automake's warning messages about using GNU make extensions
diff --git a/configure.ac b/configure.ac index 64c9dd6..d8a4c35 100644 --- a/configure.ac +++ b/configure.ac @@ -1,556 +1,556 @@ dnl ============================================================================ dnl dnl Window Maker autoconf input dnl AC_COPYRIGHT([Copyright (c) 2001-2015 The Window Maker Team]) dn...
roblillack/wmaker
230a501d36e098867d4c6f692f6c9c9102ffa899
Fix typo on defining imagemagick version.
diff --git a/m4/wm_imgfmt_check.m4 b/m4/wm_imgfmt_check.m4 index 2236e6c..6f9ecc4 100644 --- a/m4/wm_imgfmt_check.m4 +++ b/m4/wm_imgfmt_check.m4 @@ -1,336 +1,336 @@ # wm_imgfmt_check.m4 - Macros to check for image file format support libraries # # Copyright (c) 2013 Christophe CURIS # # This program is free softwa...
roblillack/wmaker
3022edd060cef498b957dde02ed38617cc01226b
wrlib: Fix typo in macro containing ImageMagick version
diff --git a/wrlib/load_magick.c b/wrlib/load_magick.c index dbbfe92..876db90 100644 --- a/wrlib/load_magick.c +++ b/wrlib/load_magick.c @@ -1,127 +1,129 @@ /* load_magick.c - load image file using ImageMagick * * Raster graphics library * * Copyright (c) 2014 Window Maker Team * * This library is free so...
roblillack/wmaker
1713a88656d0bb1a46f7972b381eac2605a04413
debian: Remove ImageMagick patch; an equivalent patch now exists in next
diff --git a/debian/patches/10_support_imagemagick6.diff b/debian/patches/10_support_imagemagick6.diff deleted file mode 100644 index 014b070..0000000 --- a/debian/patches/10_support_imagemagick6.diff +++ /dev/null @@ -1,27 +0,0 @@ -Description: Restore support for ImageMagick v6, as v7 not in Debian. -Origin: https://...
roblillack/wmaker
00a25db9ea6168d60e60cfdcb6fb6ba065236802
checkpatch.pl: Escape curly braces in regexes
diff --git a/checkpatch.pl b/checkpatch.pl index 86155bd..eee8d6e 100755 --- a/checkpatch.pl +++ b/checkpatch.pl @@ -1910,1804 +1910,1806 @@ sub process { if (WARN("SPACE_BEFORE_TAB", "please, no space before tabs\n" . $herevet) && $fix) { while ($fixed[$linenr - 1] =~ s/(^\+.*) {8,8}\t/$...
roblillack/wmaker
c678580621e38c1869d1b2e65a4b77987d124865
debian: Update with version 0.95.9-2 packaging.
diff --git a/debian/changelog b/debian/changelog index 4736fde..a352802 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,512 +1,519 @@ +wmaker (0.95.9-2) unstable; urgency=low + + * Ship manpages from as-installed location (debian/tmp) instead of + sourcetree to make dh_missing output more useful. + + -- ...
roblillack/wmaker
44bc9cc264ba13a6033c1145ba2b15f48395356f
Fix various abs() issues.
diff --git a/WPrefs.app/FontSimple.c b/WPrefs.app/FontSimple.c index eac0411..2147b98 100644 --- a/WPrefs.app/FontSimple.c +++ b/WPrefs.app/FontSimple.c @@ -1,750 +1,751 @@ /* FontSimple.c- simplified font configuration panel * * WPrefs - Window Maker Preferences Program * * Copyright (c) 1998-2004 Alfredo K...
roblillack/wmaker
dfa92906c0bd8cba4fa5d1ed4e31edc6cdc3ca00
wrlib: Compile with either ImageMagick 6 and 7
diff --git a/m4/wm_imgfmt_check.m4 b/m4/wm_imgfmt_check.m4 index b5adf6f..2236e6c 100644 --- a/m4/wm_imgfmt_check.m4 +++ b/m4/wm_imgfmt_check.m4 @@ -1,332 +1,336 @@ # wm_imgfmt_check.m4 - Macros to check for image file format support libraries # # Copyright (c) 2013 Christophe CURIS # # This program is free softwa...
roblillack/wmaker
27dc5efd2eaeaef06c4dc6dd5e8385108079d958
debian: Update with version 0.95.9-1 packaging.
diff --git a/debian/README.Debian b/debian/README.Debian index fbf1761..46a6c28 100644 --- a/debian/README.Debian +++ b/debian/README.Debian @@ -1,203 +1,212 @@ Window Maker for DEBIAN ======================= This is Debian GNU/Linux's prepackaged version of Window Maker, yet another window manager, written mostl...
roblillack/wmaker
86659be668c955d7fbba1cc4b5e0249d98c76a14
wmlib: Use X flags from configure
diff --git a/wmlib/Makefile.am b/wmlib/Makefile.am index 0816352..8b87fdf 100644 --- a/wmlib/Makefile.am +++ b/wmlib/Makefile.am @@ -1,33 +1,33 @@ AUTOMAKE_OPTIONS = no-dependencies libWMaker_la_LDFLAGS = -version-info 1:1:0 lib_LTLIBRARIES = libWMaker.la include_HEADERS = WMaker.h AM_CPPFLAGS = $(DFLAGS) ...
roblillack/wmaker
e314f10909309dfa8f1db3d2595d9257ab3928b0
configure: Fix typo in libXmu check.
diff --git a/m4/wm_xext_check.m4 b/m4/wm_xext_check.m4 index 8bcaf8c..9503af2 100644 --- a/m4/wm_xext_check.m4 +++ b/m4/wm_xext_check.m4 @@ -1,207 +1,207 @@ # wm_xext_check.m4 - Macros to check for X extensions support libraries # # Copyright (c) 2013 Christophe CURIS # # This program is free software; you can red...
roblillack/wmaker
6320bb6219061713a6f18073342661662bc8b69a
configure: Allow changing default search paths
diff --git a/configure.ac b/configure.ac index fe0ba51..208e8ac 100644 --- a/configure.ac +++ b/configure.ac @@ -1,810 +1,806 @@ dnl ============================================================================ dnl dnl Window Maker autoconf input dnl AC_COPYRIGHT([Copyright (c) 2001-2015 The Window Maker Team]) dn...
roblillack/wmaker
f9bc310fa686c226da42164ca04462e32a314b15
Window Maker 0.95.9
diff --git a/configure.ac b/configure.ac index b5e5ffd..fe0ba51 100644 --- a/configure.ac +++ b/configure.ac @@ -1,549 +1,549 @@ dnl ============================================================================ dnl dnl Window Maker autoconf input dnl AC_COPYRIGHT([Copyright (c) 2001-2015 The Window Maker Team]) dn...
roblillack/wmaker
bb716a4ca117c856d333fa8d9c152fda8a6acf2a
util: renamed wmiv DEBUG constant name
diff --git a/util/wmiv.c b/util/wmiv.c index 57ad4d4..492af88 100755 --- a/util/wmiv.c +++ b/util/wmiv.c @@ -1,1021 +1,1021 @@ /* * Window Maker window manager * * Copyright (c) 2014 Window Maker Team - David Maciejak * * This program is free software; you can redistribute it and/or modify * it under t...
roblillack/wmaker
91f8e2166804113ab4864fd488cae85153183163
WPrefs: fixed malformed TIFF file generating libtiff warnings
diff --git a/WPrefs.app/tiff/ergonomic.tiff b/WPrefs.app/tiff/ergonomic.tiff index ae21a38..71a1bd3 100644 Binary files a/WPrefs.app/tiff/ergonomic.tiff and b/WPrefs.app/tiff/ergonomic.tiff differ
roblillack/wmaker
5f18f60fd2ac4c549f3ecfc3b657342f920b2b9c
WPrefs: increased open submenu label size
diff --git a/WPrefs.app/Menu.c b/WPrefs.app/Menu.c index e7a10ac..afa145b 100644 --- a/WPrefs.app/Menu.c +++ b/WPrefs.app/Menu.c @@ -105,1025 +105,1025 @@ typedef struct _Panel { WMFrame *paramF; WMTextField *paramT; WMButton *quickB; Bool dontAsk; /* whether to comfirm submenu remove */ Bool dontSave; ...
roblillack/wmaker
a21586906789a87a095e281855284f1df38cef04
wrlib: Fixed warning msg using libpng
diff --git a/wrlib/load_png.c b/wrlib/load_png.c index 52148a8..aa5c629 100644 --- a/wrlib/load_png.c +++ b/wrlib/load_png.c @@ -1,215 +1,218 @@ /* png.c - load PNG image from file * * Raster graphics library * * Copyright (c) 1997-2003 Alfredo K. Kojima * * This library is free software; you can redistri...
roblillack/wmaker
909deea70c393334f86772ce54a7999400989772
bump copyright year in Info Panel
diff --git a/src/dialog.c b/src/dialog.c index e490382..2d5a6d7 100644 --- a/src/dialog.c +++ b/src/dialog.c @@ -640,1025 +640,1025 @@ static void setViewedImage(IconPanel *panel, const char *file) iheight = WMWidgetHeight(panel->iconView); pixmap = WMCreateScaledBlendedPixmapFromFile(WMWidgetScreen(panel->win), fi...
roblillack/wmaker
984a992d0eddb2843860d36b4bb7476905fff47a
Fix typo
diff --git a/src/menu.c b/src/menu.c index 130fe13..d47c544 100644 --- a/src/menu.c +++ b/src/menu.c @@ -1010,1104 +1010,1104 @@ static int keyboardMenu(WMenu * menu) XUngrabKeyboard(dpy, CurrentTime); if (done == 2 && menu->selected_entry >= 0) { entry = menu->entries[menu->selected_entry]; } else { entr...
roblillack/wmaker
d9bc96e497a000b8b431d849a2524d9f7f1ea552
strncpy's third argument should be the length of the dest buffer, not the source.
diff --git a/src/event.c b/src/event.c index 39bf550..007b10b 100644 --- a/src/event.c +++ b/src/event.c @@ -497,1027 +497,1027 @@ static void handleDeadProcess(void) deadProcessPtr = 0; return; } /* get the pids on the queue and call handlers */ while (deadProcessPtr > 0) { deadProcessPtr--; for ...
roblillack/wmaker
a7baed6cf702f56d4932c45b4111980130a02285
Fixed expression checking whether flag is set.
diff --git a/src/motif.c b/src/motif.c index 34f6847..df439a8 100644 --- a/src/motif.c +++ b/src/motif.c @@ -1,196 +1,196 @@ /* motif.c-- stuff for support for mwm hints * * Window Maker window manager * * Copyright (c) 1998-2003 Alfredo K. Kojima * * This program is free software; you can redistribute ...
roblillack/wmaker
a12f0d453ac26c300b74fb7a8bf4dd1d08594803
Fixed buffer size.
diff --git a/src/dock.c b/src/dock.c index 86eef57..c956eab 100644 --- a/src/dock.c +++ b/src/dock.c @@ -883,1033 +883,1033 @@ static void switchWSCommand(WMenu *menu, WMenuEntry *entry) dest = scr->workspaces[entry->order]->clip; selectedIcons = getSelected(src); if (WMGetArrayItemCount(selectedIcons)) { ...
roblillack/wmaker
41193bdacdf218e6176c2cc56e26714faacbd947
Fixed function-pointer compatibility.
diff --git a/src/dock.c b/src/dock.c index c26436a..86eef57 100644 --- a/src/dock.c +++ b/src/dock.c @@ -1,607 +1,607 @@ /* dock.c- built-in Dock module for WindowMaker * * Window Maker window manager * * Copyright (c) 1997-2003 Alfredo K. Kojima * Copyright (c) 1998-2003 Dan Pascu * * This program i...
roblillack/wmaker
a7f8e990dbaf7d41186b523ad842a60a46322d8e
Added explicit fall-through comments to pacify GCC.
diff --git a/src/defaults.c b/src/defaults.c index e20cc46..31efa3f 100644 --- a/src/defaults.c +++ b/src/defaults.c @@ -2869,611 +2869,613 @@ static int setMenuDisabledColor(WScreen * scr, WDefaultEntry * entry, void *tdat /* Parameter not used, but tell the compiler that it is ok */ (void) entry; (void) foo; ...
roblillack/wmaker
b59273f199ee194ae1157bc41e9a8d65eeededca
Added missing function declaration.
diff --git a/src/actions.h b/src/actions.h index 210e53e..1ef40b4 100644 --- a/src/actions.h +++ b/src/actions.h @@ -1,87 +1,88 @@ /* * Window Maker window manager * * Copyright (c) 1997-2003 Alfredo K. Kojima * * This program is free software; you can redistribute it and/or modify * it under the terms...
roblillack/wmaker
be922384ac82ae155a3d7678475c3861c1110680
slight increase in default switch panel icon size to improve border view
diff --git a/src/defaults.c b/src/defaults.c index 440376b..e20cc46 100644 --- a/src/defaults.c +++ b/src/defaults.c @@ -1,865 +1,865 @@ /* defaults.c - manage configuration through defaults db * * Window Maker window manager * * Copyright (c) 1997-2003 Alfredo K. Kojima * Copyright (c) 1998-2003 Dan Pasc...
roblillack/wmaker
31f16b65a33632c8345b150baa7bf79fa0a4a8c6
higher resolution images for switch panel
diff --git a/WindowMaker/Pixmaps/swback.png b/WindowMaker/Pixmaps/swback.png index cd9633a..2b6d7ef 100644 Binary files a/WindowMaker/Pixmaps/swback.png and b/WindowMaker/Pixmaps/swback.png differ diff --git a/WindowMaker/Pixmaps/swback2.png b/WindowMaker/Pixmaps/swback2.png index c4b267d..2c1503b 100644 Binary files a...
roblillack/wmaker
3665410377a2fbac7bfb3728eadbef0fc87b2830
make switchpanel configurable
diff --git a/NEWS b/NEWS index 8ed766f..8eaecfb 100644 --- a/NEWS +++ b/NEWS @@ -1,517 +1,526 @@ NEWS for veteran Window Maker users ----------------------------------- -- 0.95.9 +Configurable SwitchPanel +------------------------ + +SwitchPanel is now more configurable: you can configure the switch panel icon +...
roblillack/wmaker
4477ae4da46a5553756d368e0fe95e6ccbf1ddda
Prefer TryExec to Exec when generating menu entries from XDG desktop files.
diff --git a/util/wmmenugen_parse_xdg.c b/util/wmmenugen_parse_xdg.c index cc5cbc6..1d8975d 100644 --- a/util/wmmenugen_parse_xdg.c +++ b/util/wmmenugen_parse_xdg.c @@ -1,652 +1,653 @@ /* * wmmenugen - Window Maker PropList menu generator * * Desktop Entry Specification parser functions * * Copyright (c) 201...
roblillack/wmaker
9330a021e5053291a6a75276a651a91cfc2523b1
Omit field-code in Exec fields when generating menu-entries from XDG desktop-files.
diff --git a/util/wmmenugen_parse_xdg.c b/util/wmmenugen_parse_xdg.c index 0d329dd..cc5cbc6 100644 --- a/util/wmmenugen_parse_xdg.c +++ b/util/wmmenugen_parse_xdg.c @@ -1,649 +1,652 @@ /* * wmmenugen - Window Maker PropList menu generator * * Desktop Entry Specification parser functions * * Copyright (c) 201...
roblillack/wmaker
41ab9260905832e9ebc18b1b9c70973cdf066e44
Parse Exec fields when generating menu-entries from XDG desktop-files.
diff --git a/util/wmmenugen.h b/util/wmmenugen.h index 6ccefc9..1250954 100644 --- a/util/wmmenugen.h +++ b/util/wmmenugen.h @@ -1,68 +1,69 @@ /* * wmmenugen - Window Maker PropList menu generator * * Copyright (c) 2010. Tamas Tevesz <ice@extreme.hu> * * This program is free software; you can redistribute it...
roblillack/wmaker
b32ccee5cb128bf234e3d25a87160de1763a0645
Undo XDG string-escaping when generating menu-entries.
diff --git a/util/wmmenugen_parse_xdg.c b/util/wmmenugen_parse_xdg.c index adb47ca..02c7b00 100644 --- a/util/wmmenugen_parse_xdg.c +++ b/util/wmmenugen_parse_xdg.c @@ -1,563 +1,584 @@ /* * wmmenugen - Window Maker PropList menu generator * * Desktop Entry Specification parser functions * * Copyright (c) 201...
roblillack/wmaker
6734646265775b63d3f4c1eb31c99d2f8aef5545
Use pointers as parameters instead of pointer-to-pointers.
diff --git a/util/wmmenugen_parse_xdg.c b/util/wmmenugen_parse_xdg.c index 3272ee6..adb47ca 100644 --- a/util/wmmenugen_parse_xdg.c +++ b/util/wmmenugen_parse_xdg.c @@ -1,563 +1,563 @@ /* * wmmenugen - Window Maker PropList menu generator * * Desktop Entry Specification parser functions * * Copyright (c) 201...