Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-09-26 | Hide some columns by default | René Stadler | 1 | -1/+4 | |
2012-09-26 | columns: optimize cell data functions a little | René Stadler | 1 | -18/+12 | |
2012-09-26 | Fix crash when copying row to clipboard | René Stadler | 1 | -4/+7 | |
2012-09-24 | models: store line offsets in arrays | René Stadler | 1 | -5/+4 | |
2012-09-24 | Use pango markup instead of attributes | René Stadler | 2 | -23/+32 | |
Attributes don't work from introspection, so this blocks porting to gtk3. In MessageColumn, admit that multiple highlighters don't actually work. | |||||
2012-09-22 | Fix crash when range filtering | René Stadler | 1 | -1/+10 | |
Regression from 25cfe9 (timeline: make log level calculation a lot faster). | |||||
2012-09-21 | timeline: make log level calculation a lot faster | René Stadler | 1 | -0/+7 | |
This is the step where the timeline graph gets colored with the individual log level colors. It's roughly 4.5 times faster now. Probably can be made even better, the code also needs a cleanup. | |||||
2012-08-24 | Modernize menus a little | René Stadler | 1 | -2/+2 | |
A bit in preparation to gtk3 app menus. | |||||
2012-08-24 | Simplify and optimize filtered model implementation | René Stadler | 2 | -220/+53 | |
RangeFilteredLogModel is gone. The functionality is trivially implemented in FilteredLogModel now. Changing the range is now O(log n) at worst (was O(n) at best, for rewriting the arrays). Stacking filtered models is not supported anymore, which simplifies the code. | |||||
2012-08-24 | Make RangeFilteredLogModel internal to GUI.models | René Stadler | 2 | -19/+17 | |
2012-08-24 | Always use a filtered log model in the log view | René Stadler | 2 | -20/+24 | |
Preparing to phase out RangeFilteredLogModel. | |||||
2012-08-24 | models: cleanup dead code | René Stadler | 1 | -21/+0 | |
2012-08-24 | window: prevent default handler for delete-event from running | René Stadler | 1 | -0/+2 | |
2012-08-24 | window: set to insensitive during load/filter operations | René Stadler | 1 | -0/+24 | |
2012-08-24 | window: show error for unparseable files | René Stadler | 1 | -0/+4 | |
2012-08-24 | window: replace progress and error dialogs with InfoBars | René Stadler | 1 | -30/+55 | |
2012-08-24 | window: set wmclass, to have a nicer app name when running uninstalled | René Stadler | 1 | -0/+4 | |
2011-11-16 | window: connect action handlers using a function decorator | René Stadler | 1 | -12/+51 | |
A bit esoteric, but better than maintaining the list of action names. | |||||
2011-11-16 | Switch to new try..except syntax | René Stadler | 1 | -2/+2 | |
This is forward compatible to Python 3. | |||||
2011-11-06 | columns: auto size time column when setting base time | René Stadler | 2 | -2/+11 | |
Base time formatting adds + or - in front of the timestamp, so the column has to grow a little to not hide the last digit. Also fixes a crash when setting the base time while the time column is hidden. | |||||
2011-11-06 | columns: also auto size thread and pid column on zoom change | René Stadler | 1 | -2/+5 | |
2011-11-06 | columns: cleanup default size calculation | René Stadler | 1 | -11/+8 | |
Some unused parameters here. | |||||
2011-11-06 | Remove odd-even row colors from log level column | René Stadler | 2 | -20/+9 | |
This is more of visual clutter than aid. People also seem to be less likely to spot the connection between the column and the timeline graph colors. | |||||
2011-11-06 | Resize time and log level columns after zoom change | René Stadler | 1 | -0/+16 | |
2011-11-06 | Store zoom level in state | René Stadler | 2 | -0/+16 | |
2011-11-06 | Add zoom reset action | René Stadler | 1 | -2/+8 | |
2011-11-06 | Refactor and fix zoom handling | René Stadler | 2 | -10/+32 | |
ColumnManager has to apply the zoom factor to newly added columns. Otherwise, showing a previously hidden column appears with scale 1.0. This also drops the value-changed signal emission for the vadjustment, as it is apparently not needed. | |||||
2011-11-05 | Add 'fixme' and 'trace' log levels | Stefan Kost | 1 | -0/+4 | |
2011-11-05 | Add zoom in/out actions, reduce vertical row padding | Stefan Kost | 3 | -2/+32 | |
Add two actions to shrink and enlarge the text in the log pane. Add a theme overide to set expander size to 1 (see bug #615985) and also turn focus lines off. Remove extra ypadding on cells. | |||||
2011-09-09 | Improve wording of hide lines actions | René Stadler | 1 | -2/+2 | |
These also appear in the context menu of the timeline. The more generic wording makes more sense for the timeline, since you do not pinpoint any specific line in this case. | |||||
2011-09-07 | Fix glib warnings on model property access | René Stadler | 2 | -23/+24 | |
Seems like pygobject can all of the sudden not handle a NULL model on a property. Using the getter works around this. Also using the setter now for consistency. | |||||
2009-10-16 | Add new base time feature | René Stadler | 2 | -14/+45 | |
The log view context menu gains a new action "Set base time", which changes the time column to show the delta to the selected row. | |||||
2009-10-15 | Split giant GUI module into submodules | René Stadler | 7 | -0/+2446 | |