Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-02-17 | CustomMenu command now shows lua menus | Pavel Labath | 4 | -38/+33 | |
2013-02-17 | Convert windowmenu to lua | Pavel Labath | 3 | -38/+39 | |
also, i've restored the autoreloading capability of menus. | |||||
2013-02-17 | Handle all menu entry types when loading from lua | Pavel Labath | 1 | -176/+32 | |
2013-02-17 | A veeeery rough implementation of lua menu parsers | Pavel Labath | 6 | -9/+172 | |
2013-02-17 | Add accessor for the lua state of Fluxbox class | Pavel Labath | 1 | -0/+2 | |
2013-02-17 | Change default rootmenu file name | Pavel Labath | 1 | -1/+1 | |
2013-02-17 | Fallback to loading of system-wide init file if loading of user's fails | Pavel Labath | 1 | -13/+15 | |
2013-02-17 | Convert slitlist from a separate file to a regular lua resource | Pavel Labath | 5 | -78/+96 | |
2013-02-17 | Fix saving of resources. | Pavel Labath | 1 | -29/+66 | |
2013-02-17 | Remove an unused variable | Pavel Labath | 1 | -1/+0 | |
2013-02-17 | Make session.screenX.workspace_names a real FbTk::Resource | Pavel Labath | 3 | -102/+27 | |
instead of the add-on hack it was. This also fixes a lot of problems with saving of config. | |||||
2013-02-16 | Vector resources can now specify which char to use as delimiters | Pavel Labath | 2 | -3/+4 | |
when saving/loading to/from string representation. This is needed for the next commit. | |||||
2013-02-16 | Add LocaleStringTraits resource class | Pavel Labath | 1 | -2/+19 | |
for resources which need to work with localised strings. | |||||
2013-02-16 | Replace ResourceManager with the lua version | Pavel Labath | 13 | -146/+100 | |
Loading of an init file with the new manager works ok. Saving and restarting is still not completed. This touches many files because i removed the alternative name of resources. Unlike Xrm, lua does not have native support for alt names. It should be fairly easy to add them, but I think that is unnecessary and would be confusing. | |||||
2013-02-16 | Fix bug in LResources: they were unable to handle resources with numbers in ↵ | Pavel Labath | 1 | -6/+6 | |
names | |||||
2013-02-16 | Another temporary commit | Pavel Labath | 1 | -6/+6 | |
- comment out automatic upgrading of init file as we don't have that yet and it was causing problems - rename default init file to ~/.fluxbox/init2 to reflect the change of syntax - comment out exception handling blocks in main(): it is easier to debug when the program terminates when an unhandled exception occurs | |||||
2013-02-16 | Make lua resource manager automatically initialize lua state if needed | Pavel Labath | 1 | -0/+5 | |
2013-02-16 | Add a function for converting from XResources to lua ones | Pavel Labath | 3 | -0/+21 | |
2013-02-16 | Lua resources: Add support for saving of boolean values | Pavel Labath | 1 | -6/+15 | |
2013-02-16 | Factor out "session." from resource names | Pavel Labath | 7 | -65/+71 | |
this reduces typing and it makes more sense in lua, since there the resources are implemented as hierarchical tables and the topmost table has to be handled a bit specially. | |||||
2013-02-16 | Move more common stuff of (L)ResourceManagers to their base class | Pavel Labath | 4 | -80/+41 | |
2013-02-16 | Avoid a "converting to int from foo" compiler warning | Pavel Labath | 1 | -1/+1 | |
2013-02-16 | Add support for array lua resources | Pavel Labath | 3 | -34/+49 | |
2013-02-16 | Simplify FbTk::Resource template class | Pavel Labath | 22 | -882/+453 | |
by outsourcing the conversion from string/lua to the specific type (and back) to a separate class. This change touches a lot of files because the interface of FbTk::Resource changed slightly. However, the changes are minor. | |||||
2013-02-16 | Specializations of FbTk::Resource<X>::{setFromLua,pushToLua} | Pavel Labath | 7 | -50/+348 | |
for various values of X. | |||||
2013-02-16 | A rough version of resource implementation in lua | Pavel Labath | 7 | -35/+457 | |
I added a new class, LResourceManager, which should handle loading and saving of resources like the old ResourceManager, only it does that with the help of lua. I moved the common features of the two managers (interface + a few functions) to a common base class ResourceManager_base. I augmented the Resource_base class with two new functions (setFromLua and pushToLua) which are used by the lua RM instead of getString and setFromString. Parts of the new RM are written in lua. To avoid loading scripts from a file at runtime I decided to link compiled lua code straight into the executable. For this purpose I created a small script which converts a binary file into a declaration of a C array of bytes. | |||||
2013-02-16 | convert ResourceManager::{add,remove}Resource from template to a regular ↵ | Pavel Labath | 2 | -34/+31 | |
function | |||||
2013-02-16 | Lua exceptions can now outlive thier lua context | Pavel Labath | 2 | -5/+18 | |
2013-02-16 | Luamm: add lua_createtable binding | Pavel Labath | 1 | -0/+1 | |
2013-02-16 | luamm: add a version of loadstring which also takes the string length as a ↵ | Pavel Labath | 2 | -3/+22 | |
parameter | |||||
2013-02-16 | Add lua_rawgeti wrapper to luamm | Pavel Labath | 1 | -0/+1 | |
2013-02-16 | Remove the possibility to transport exceptions through lua code | Pavel Labath | 2 | -54/+9 | |
It's impossible to do this without C++0x features (we need std::exception_ptr). | |||||
2013-02-16 | c++ lua binding: get rid of variadic templates | Pavel Labath | 1 | -5/+44 | |
See how variadic templates are good. They enabled me to write those four functions as one. | |||||
2013-02-16 | c++ lua binding: get rid of shared_ptr | Pavel Labath | 2 | -102/+108 | |
It was pretty underused anyway. I was just lazy to write a proper destructor. | |||||
2013-02-16 | c++ lua binding: get rid of deleted functions and rvalue references | Pavel Labath | 2 | -48/+25 | |
2013-02-16 | c++ lua binding: replace std::function with FbTk::Slot | Pavel Labath | 2 | -24/+36 | |
std::function is superior, but not supported on old compilers | |||||
2013-02-16 | Do not depend on readline | Pavel Labath | 2 | -2/+9 | |
Readline is only used in the standalone lua interpreter, and we don't really need that. It would be silly to pull readline as a dependency for this reason. | |||||
2013-02-16 | C++ binding for lua | Pavel Labath | 3 | -0/+810 | |
copied from conky (http://conky.sf.net) and relicensed. Since I am the person who wrote it in the first place there should not be a problem with licence conversion. | |||||
2013-02-16 | Integrate the lua build system into ours | Pavel Labath | 5 | -3/+12 | |
2013-02-16 | Add lua as an internal library in libs/lua | Pavel Labath | 102 | -0/+28415 | |
2013-02-10 | Updated Changelog, NEWS, man-pages for 1.3.4 | Mathias Gumz | 23 | -120/+190 | |
2013-02-10 | Remove unused variables, cosmetics | Mathias Gumz | 1 | -16/+16 | |
2013-02-10 | FbTk::FbTime::mono() yields microseconds since fluxbox started | Mathias Gumz | 1 | -3/+2 | |
2013-02-10 | Cleanup | Mathias Gumz | 2 | -31/+31 | |
2013-02-10 | More subtle brightening of textures | Mathias Gumz | 1 | -5/+5 | |
2013-02-06 | Feature #3602124: 'LHalf' and 'RHalf' buttons to the titlebar | Mathias Gumz | 6 | -19/+85 | |
First draft of feature request of #3602124: Having 2 buttons in the titlebar which allow quick positioning of a Window into the left or right half of the current monitor. | |||||
2013-02-06 | Fix bug in renderEllipticGradient() | Mathias Gumz | 1 | -17/+20 | |
For odd 'widths' and 'heigths' the texture would not be filled completely: Given a 'width' of 5 we would render only 4 instances of x (-2, 1, 0, 1) instead of the needed 5. This results in a texture which looks a bit cut off to the bottom right side. | |||||
2013-02-06 | Minor cosmetics | Mathias Gumz | 1 | -38/+41 | |
2013-02-06 | Fix integer overflow | Mathias Gumz | 1 | -1/+1 | |
I forgot this piece in 779618e45d4571bb6a4866aa2e398780f4b4da5d. | |||||
2013-02-06 | Reduces memory footprint | Mathias Gumz | 1 | -7/+5 | |
The buffer for some gradients does not have to be width * height big when two lines are sufficient. |