deliverable/tracecompass.git
14 years ago2010-07-12 Francois Chouinard <fchouinar@gmail.com> Contributions for Bug319429...
Francois Chouinard [Mon, 12 Jul 2010 19:47:04 +0000 (19:47 +0000)] 
2010-07-12  Francois Chouinard  <fchouinar@gmail.com>  Contributions for Bug319429 (Implementation of Custom Parsers)

* icons/add_button.gif: New file.
* icons/addchild_button.gif: New file.
* icons/addmany_button.gif: New file.
* icons/addnext_button.gif: New file.
* icons/customparser_wizard.gif: New file.
* icons/delete_button.gif: New file.
* icons/down_button.gif: New file.
* icons/element_icon.gif: New file.
* icons/help_button.gif: New file.
* icons/line_icon.gif: New file.
* icons/movedown_button.gif: New file.
* icons/moveup_button.gif: New file.
* icons/up_button.gif: New file.
* src/org/eclipse/linuxtools/tmf/ui/commands/ManageCustomParsersCommandHandler.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/dialogs/ManageCustomParsersDialog.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/parsers/custom/CustomEvent.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/parsers/custom/CustomEventsTable.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/parsers/custom/CustomParserProvider.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/parsers/custom/CustomTraceDefinition.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/parsers/custom/CustomTxtEvent.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/parsers/custom/CustomTxtTrace.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/parsers/custom/CustomTxtTraceContext.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/parsers/custom/CustomTxtTraceDefinition.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/parsers/custom/CustomXmlEvent.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/parsers/custom/CustomXmlTrace.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/parsers/custom/CustomXmlTraceContext.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/parsers/custom/CustomXmlTraceDefinition.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/wizards/CustomTxtParserInputWizardPage.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/wizards/CustomTxtParserOutputWizardPage.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/wizards/CustomTxtParserWizard.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/wizards/CustomXmlParserInputWizardPage.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/wizards/CustomXmlParserOutputWizardPage.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/wizards/CustomXmlParserWizard.java: New file.

14 years ago2010-07-12 Francois Chouinard <fchouinar@gmail.com> Contribution for Bug319428...
Francois Chouinard [Mon, 12 Jul 2010 17:49:42 +0000 (17:49 +0000)] 
2010-07-12  Francois Chouinard  <fchouinar@gmail.com>  Contribution for Bug319428 (Generalization of Project View + upgraded EventsView)

* src/org/eclipse/linuxtools/tmf/signal/TmfTraceClosedSignal.java: New file.
* src/org/eclipse/linuxtools/tmf/signal/TmfTraceOpenedSignal.java: New file.
* src/org/eclipse/linuxtools/tmf/signal/TmfTraceParserUpdatedSignal.java: New file.
* src/org/eclipse/linuxtools/tmf/signal/TmfTraceSelectedSignal.java: New file.
* META-INF/MANIFEST.MF: Added a dependency on org.eclipse.core.resources
* src/org/eclipse/linuxtools/tmf/experiment/TmfExperiment.java (seekEvent): Commented out useless statements
* src/org/eclipse/linuxtools/tmf/trace/ITmfContext.java: Added a constant
* src/org/eclipse/linuxtools/tmf/trace/ITmfTrace.java: Added APIs
* src/org/eclipse/linuxtools/tmf/trace/TmfLocation.java: Added validation on location
* src/org/eclipse/linuxtools/tmf/trace/TmfTrace.java (getRank): Added
(indexTrace): Cleaned up warning
(queueLongRequest): Added background process handling

        * src/org/eclipse/linuxtools/tmf/ui/TmfUiPlugin.java:
- Initialized ParserProviderManager
- Added getImageFromPath()
* src/org/eclipse/linuxtools/tmf/ui/editors/ITmfTraceEditor.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/editors/TmfEditor.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/editors/TmfEditorInput.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/editors/TmfEventsEditor.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/editors/TmfMultiPageEditorPart.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/parsers/IParserProvider.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/parsers/ParserProviderManager.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/TmfEventsView.java: Use TmfEventsTable instead of Table
* src/org/eclipse/linuxtools/tmf/ui/views/project/ProjectView.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/TmfProjectNature.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/dialogs/AddTraceWizard.java:
* src/org/eclipse/linuxtools/tmf/ui/views/project/dialogs/AddTraceWizardPage.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/dialogs/DialogTraceContentProvider.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/dialogs/DialogTraceLabelProvider.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/dialogs/ImportTraceWizard.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/dialogs/ImportTraceWizardPage.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/dialogs/NewExperimentDialog.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/dialogs/NewProjectMainWizardPage.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/dialogs/NewProjectWizard.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/handlers/CloseProjectHandler.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/handlers/DeleteExperimentHandler.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/handlers/DeleteProjectHandler.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/handlers/DeleteTraceHandler.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/handlers/ImportTraceHandler.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/handlers/NewExperimentHandler.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/handlers/NewProjectHandler.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/handlers/OpenExperimentHandler.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/handlers/OpenProjectHandler.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/handlers/OpenTraceHandler.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/handlers/RefreshHandler.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/handlers/RenameExperimentHandler.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/handlers/RenameProjectHandler.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/handlers/RenameTraceHandler.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/handlers/SelectParserContributionItem.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/handlers/SelectParserHandler.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/handlers/SelectTracesHandler.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/model/ITmfProjectTreeNode.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/model/TmfExperimentFolderNode.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/model/TmfExperimentNode.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/model/TmfProjectContentProvider.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/model/TmfProjectLabelProvider.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/model/TmfProjectNode.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/model/TmfProjectRoot.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/model/TmfTraceFolderNode.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/model/TmfProjectTreeNode.java: New file.
* src/org/eclipse/linuxtools/tmf/ui/views/project/model/TmfTraceNode.java: New file.
* schema/org.eclipse.linuxtools.tmf.ui.parserprovider.exsd: Extension point for parser providers
* META-INF/MANIFEST.MF: Added plugin.xml in includes
* build.properties: Added plugin.xml in includes
* plugin.xml: New file (extensions used by TmfEditor, TmfTable, TmfProject)

14 years ago2010-07-08 Francois Chouinard <fchouinard@gmail.com> Partial implementation of...
Francois Chouinard [Thu, 8 Jul 2010 20:54:57 +0000 (20:54 +0000)] 
2010-07-08  Francois Chouinard  <fchouinard@gmail.com> Partial implementation of Bug316354 (for Patrick's contribution)

* src/org/eclipse/linuxtools/tmf/trace/TmfTrace.java (indexTrace): New method + renamed a constant

14 years agoAdd missing about.html
Andrew Overholt [Tue, 6 Jul 2010 16:44:21 +0000 (16:44 +0000)] 
Add missing about.html

14 years agoAdd missing about.html
Andrew Overholt [Tue, 6 Jul 2010 16:44:14 +0000 (16:44 +0000)] 
Add missing about.html

14 years agoAdd missing about.html
Andrew Overholt [Tue, 6 Jul 2010 16:41:26 +0000 (16:41 +0000)] 
Add missing about.html

14 years agoAdd missing about.html
Andrew Overholt [Tue, 6 Jul 2010 16:41:18 +0000 (16:41 +0000)] 
Add missing about.html

14 years agoAdd missing about.html
Andrew Overholt [Tue, 6 Jul 2010 16:40:19 +0000 (16:40 +0000)] 
Add missing about.html

14 years agoAdd missing about.html
Andrew Overholt [Tue, 6 Jul 2010 16:39:54 +0000 (16:39 +0000)] 
Add missing about.html

14 years agoJune 29th, 2010
Alvaro Sanchez-Leon [Wed, 30 Jun 2010 03:48:47 +0000 (03:48 +0000)] 
June 29th, 2010

NEW - bug 292412: [LTTng] Control Flow View Zoom-In some times does not show the state
https://bugs.eclipse.org/bugs/show_bug.cgi?id=292412

The synthetic event provider has been updated to draw the last state registered in its corresponding state provider,
when multiple traces are involved within the same experiment, a loop is performed to trigger the drawing of the last state on every trace.

This issue is also covering some left overs of Bug 303510, where selecting next or previous event on the first event or last event would either go all the way to the birth time of the process or the end time of the trace. These border events don't have a reference to the next event since it's out of the scope of the data collected when a zoom in / out was previously selected.

The mechanism is adjusted to artificially extend these events to either half page before or after the visible time window, so moving to previous or next border events would re-select half the window before or after and therefore be able to keep the zoom level and visualise a before or after layout of information.

The above required an adjustment to the tmf time analysis widget to correct a bug, when the currently selected time is in the middle of the last event of a particular process and the next event option is selected, this was causing to re-select back to the start time of the last event, the correction causes it to select to the end of the last event as it's expected.

14 years ago2010-06-23 fchouinard@gmail.com Fix for Bug316280
Francois Chouinard [Wed, 23 Jun 2010 14:22:51 +0000 (14:22 +0000)] 
2010-06-23  fchouinard@gmail.com  Fix for Bug316280

14 years agoJune 22,
Alvaro Sanchez-Leon [Tue, 22 Jun 2010 15:08:04 +0000 (15:08 +0000)] 
June 22,
Clean-up,
removed classes no longer in use

14 years ago2010-06-21 fchouinard@gmail.com Fix for Bug316276
Francois Chouinard [Mon, 21 Jun 2010 19:00:36 +0000 (19:00 +0000)] 
2010-06-21  fchouinard@gmail.com  Fix for Bug316276

14 years agoBug 315605: [LTTng] Document exact version of liblttvtraceread that works
Andrew Overholt [Wed, 9 Jun 2010 13:55:03 +0000 (13:55 +0000)] 
Bug 315605:  [LTTng] Document exact version of liblttvtraceread that works

Add reference to wiki page in help contents.

14 years ago2010-06-07 fchouinard@gmail.com Reverted version #s to previous values.
Francois Chouinard [Mon, 7 Jun 2010 19:11:56 +0000 (19:11 +0000)] 
2010-06-07  fchouinard@gmail.com  Reverted version #s to previous values.

14 years ago2010-06-07 fchouinard@gmail.com Bug309402
Francois Chouinard [Mon, 7 Jun 2010 17:56:48 +0000 (17:56 +0000)] 
2010-06-07  fchouinard@gmail.com   Bug309402

Added a progress monitor to a long operation in the Events View.

14 years ago2010-06-07 fchouinard@gmail.com
Francois Chouinard [Mon, 7 Jun 2010 17:13:58 +0000 (17:13 +0000)] 
2010-06-07  fchouinard@gmail.com

Contribution for Bug309042 (plugin version updates)

14 years agoFix for bug315990
Francois Chouinard [Mon, 7 Jun 2010 17:02:23 +0000 (17:02 +0000)] 
Fix for bug315990

14 years ago2010-06-05 fchouinard@gmail.com Contributions for bugs 292965, 292963, 293102,...
Francois Chouinard [Sat, 5 Jun 2010 23:46:36 +0000 (23:46 +0000)] 
2010-06-05  fchouinard@gmail.com  Contributions for bugs 292965, 292963, 293102, 300546 and 302486

14 years agoJune 4, 2010
Alvaro Sanchez-Leon [Fri, 4 Jun 2010 21:15:54 +0000 (21:15 +0000)] 
June 4, 2010
Fixed - bug 315828: [LTTng] Control flow view states not initialised properly
https://bugs.eclipse.org/bugs/show_bug.cgi?id=315828

14 years agoFix for missing end event in CFV/RV processing.
Francois Chouinard [Thu, 3 Jun 2010 14:07:44 +0000 (14:07 +0000)] 
Fix for missing end event in CFV/RV processing.

14 years agoJune 2nd,
Alvaro Sanchez-Leon [Wed, 2 Jun 2010 22:19:10 +0000 (22:19 +0000)] 
June 2nd,
Minor adjustment to lttng test cases.

14 years agoTemporary fix for the failing JUnit test cases (mainly due to API changes)
Francois Chouinard [Wed, 2 Jun 2010 21:06:53 +0000 (21:06 +0000)] 
Temporary fix for the failing JUnit test cases (mainly due to API changes)

14 years agoMonster merge from the integration branch. Still some problems left and JUnits failing.
Francois Chouinard [Wed, 2 Jun 2010 20:19:59 +0000 (20:19 +0000)] 
Monster merge from the integration branch. Still some problems left and JUnits failing.

14 years agoJune 1st
Alvaro Sanchez-Leon [Tue, 1 Jun 2010 15:40:08 +0000 (15:40 +0000)] 
June 1st
NEW - bug 311738: Many UNNAMED processes in eclipse view compared to lttv-gui view
https://bugs.eclipse.org/bugs/show_bug.cgi?id=311738

14 years agoChange bundle provider to "Eclipse Linux Tools".
Andrew Overholt [Thu, 27 May 2010 16:13:21 +0000 (16:13 +0000)] 
Change bundle provider to "Eclipse Linux Tools".

14 years ago2010-05-18 Andrew Overholt <overholt@redhat.com>
Andrew Overholt [Tue, 18 May 2010 14:35:24 +0000 (14:35 +0000)] 
2010-05-18  Andrew Overholt  <overholt@redhat.com>

* feature.properties: Fix provider name.

14 years ago2010-05-17 Francois Chouinard <fchouinard@gmail.com>
Francois Chouinard [Mon, 17 May 2010 19:09:06 +0000 (19:09 +0000)] 
2010-05-17  Francois Chouinard  <fchouinard@gmail.com>

Merge "provider" branch into main line. Provides fixes for the following bugs: 304518, 302489, 308695, 303510, 306543, 292406 302494, 301633, 302496.

14 years agoChanged default behavior about parsing
William Bourque [Fri, 14 May 2010 18:19:03 +0000 (18:19 +0000)] 
Changed default behavior about parsing

14 years ago[Bug312820] Fix for the arithmetic exception
Francois Chouinard [Thu, 13 May 2010 18:02:35 +0000 (18:02 +0000)] 
[Bug312820] Fix for the arithmetic exception

14 years ago"Fixed" the failing test...
Francois Chouinard [Thu, 13 May 2010 16:40:59 +0000 (16:40 +0000)] 
"Fixed" the failing test...

14 years agoRemoved a conflicting notification
Francois Chouinard [Wed, 12 May 2010 21:54:40 +0000 (21:54 +0000)] 
Removed a conflicting notification

14 years agoSignal out-of-order fix + some additional traces.
Francois Chouinard [Wed, 12 May 2010 21:41:47 +0000 (21:41 +0000)] 
Signal out-of-order fix + some additional traces.

14 years agoFixes the last (?) warning in LTTng stuff
William Bourque [Wed, 12 May 2010 18:02:27 +0000 (18:02 +0000)] 
Fixes the last (?) warning in LTTng stuff

14 years agoSlight change to ease benchmarking
William Bourque [Tue, 11 May 2010 20:17:58 +0000 (20:17 +0000)] 
Slight change to ease benchmarking

14 years agoSmall update to unit tests to enhance code coverage
William Bourque [Tue, 11 May 2010 17:20:50 +0000 (17:20 +0000)] 
Small update to unit tests to enhance code coverage

14 years ago[Bug314458] Null event patch
Francois Chouinard [Tue, 11 May 2010 16:01:42 +0000 (16:01 +0000)] 
[Bug314458] Null event patch

14 years agoFix typos in comments in JNI. Also remove a (now useless) function not linked to...
William Bourque [Mon, 10 May 2010 19:59:32 +0000 (19:59 +0000)] 
Fix typos in comments in JNI. Also remove a (now useless) function not linked to the C.

14 years agoSmall changes based on suggestion from findBugs plugin
William Bourque [Thu, 6 May 2010 17:41:56 +0000 (17:41 +0000)] 
Small changes based on suggestion from findBugs plugin

14 years agoSmall changes based on suggestion from findBugs plugin
William Bourque [Thu, 6 May 2010 17:41:42 +0000 (17:41 +0000)] 
Small changes based on suggestion from findBugs plugin

14 years agoSmall changes to comply with findBugs plugin suggestions
William Bourque [Thu, 6 May 2010 17:34:27 +0000 (17:34 +0000)] 
Small changes to comply with findBugs plugin suggestions

14 years agoSmall bug fixes in histogram to make the positionning on a zoom smaller than the...
William Bourque [Thu, 6 May 2010 17:31:10 +0000 (17:31 +0000)] 
Small bug fixes in histogram to make the positionning on a zoom smaller than the time interval to behave better. Some changes code to comply with findBugs plugin as well

14 years agoSome slight cleaning on histogram, added some comments
William Bourque [Tue, 4 May 2010 19:53:45 +0000 (19:53 +0000)] 
Some slight cleaning on histogram, added some comments

14 years agoMore precise positionning between FullExperiment -> SelectionWindow
William Bourque [Tue, 4 May 2010 19:31:22 +0000 (19:31 +0000)] 
More precise positionning between FullExperiment -> SelectionWindow

14 years agoFix a bug about request being no-longer backgrounded
William Bourque [Tue, 4 May 2010 19:29:52 +0000 (19:29 +0000)] 
Fix a bug about request being no-longer backgrounded

14 years agoChanged all the "java primitive" to basic type due to casting issue, implemented...
William Bourque [Tue, 4 May 2010 17:16:39 +0000 (17:16 +0000)] 
Changed all the "java primitive" to basic type due to casting issue, implemented TmfTimerangeSync to be able to signal window change to other views

14 years agoFix the toString() method.
Francois Chouinard [Tue, 4 May 2010 14:21:54 +0000 (14:21 +0000)] 
Fix the toString() method.

14 years ago[Bug309042] Improved code coverage, JUnit + minor bug fixes
Francois Chouinard [Mon, 3 May 2010 17:48:16 +0000 (17:48 +0000)] 
[Bug309042] Improved code coverage, JUnit + minor bug fixes

14 years agoApril 28, 2010
Alvaro Sanchez-Leon [Wed, 28 Apr 2010 12:13:42 +0000 (12:13 +0000)] 
April 28, 2010
Bug 310709 - [TMF] Time Analysis Viewer widget single event trace and fixed time interval problems

Added:
  - The precision of the selection in the SateCtrl area was not accurate when the vertical scroll bar was not visible
   since the used area width was always removing the scrolBar width.

14 years agoApril 27/2010
Alvaro Sanchez-Leon [Tue, 27 Apr 2010 14:51:54 +0000 (14:51 +0000)] 
April 27/2010

bug 310040: [TMF] Time Analysis Widget: Use Mouse up event to trigger event notifications
https://bugs.eclipse.org/bugs/show_bug.cgi?id=310040

The initial implementation of this bug was checked-in merged with Bug 310200,
This commit action
  - Updates the cache synchronisation timers upon reception of time window updates from the application
  this in addition to its update with time window updates generated internally via the time analysis widget

14 years ago2010-04-26 Andrew Overholt <overholt@redhat.com>
Andrew Overholt [Mon, 26 Apr 2010 16:10:34 +0000 (16:10 +0000)] 
2010-04-26  Andrew Overholt  <overholt@redhat.com>

* feature.properties: Match consistent license text (bug #306627).  Update
copyright year.
* license.html: New file.  HTML version of SUA (bug #306627).
* build.properties: Include license.html.

14 years agoApril 26th, 2010
Alvaro Sanchez-Leon [Mon, 26 Apr 2010 15:00:15 +0000 (15:00 +0000)] 
April 26th, 2010
[Bug 310200] [TMF] Time Analysis Viewer widget improvements and bug fixes

14 years agoNotify TMF framework of the timerange update. Slightly better resizing of the canvas.
William Bourque [Fri, 23 Apr 2010 20:41:57 +0000 (20:41 +0000)] 
Notify TMF framework of the timerange update. Slightly better resizing of the canvas.

14 years agoVery stable and almost final version ofthe histogram view. Fix resize, silly SWT...
William Bourque [Fri, 23 Apr 2010 19:05:36 +0000 (19:05 +0000)] 
Very stable and almost final version ofthe histogram view. Fix resize, silly SWT bug, added good behavior on small screen, correct difference to average algorithm.

14 years agoHistogramView update, can now resize
William Bourque [Thu, 22 Apr 2010 22:00:46 +0000 (22:00 +0000)] 
HistogramView update, can now resize

14 years agoRemoved the failing sub-test from TmfRequestExecutorTest. This particular check is...
Francois Chouinard [Thu, 22 Apr 2010 13:03:17 +0000 (13:03 +0000)] 
Removed the failing sub-test from TmfRequestExecutorTest. This particular check is too restrictive and should never have been there in the first place.

14 years agoApril 21st,
Alvaro Sanchez-Leon [Wed, 21 Apr 2010 22:39:16 +0000 (22:39 +0000)] 
April 21st,
Bug 310040 [TMF] Time Analysis Widget: Use Mouse up event to trigger event notifications

14 years ago[Bug301615] Minor update on the request executor + unit tests
Francois Chouinard [Wed, 21 Apr 2010 21:16:02 +0000 (21:16 +0000)] 
[Bug301615] Minor update on the request executor + unit tests

14 years agoAjust stub to the new TMF interface
William Bourque [Mon, 19 Apr 2010 23:09:14 +0000 (23:09 +0000)] 
Ajust stub to the new TMF interface

14 years agoAjust stub to the new TMF interface
William Bourque [Mon, 19 Apr 2010 23:08:47 +0000 (23:08 +0000)] 
Ajust stub to the new TMF interface

14 years agoUse the new interface that allow to copy experiment/trace to run an independant reque...
William Bourque [Mon, 19 Apr 2010 23:08:17 +0000 (23:08 +0000)] 
Use the new interface that allow to copy experiment/trace to run an independant request in the background

14 years agoTo comply with the new interface that allow to copy experiment/trace
William Bourque [Mon, 19 Apr 2010 23:07:30 +0000 (23:07 +0000)] 
To comply with the new interface that allow to copy experiment/trace

14 years agoDRAFT : Enable the possibility to copy an experiment. Useful to run request in the...
William Bourque [Mon, 19 Apr 2010 23:06:47 +0000 (23:06 +0000)] 
DRAFT : Enable the possibility to copy an experiment. Useful to run request in the background.

14 years agoFixed comment in headless so it reflects the new JNI scheme
William Bourque [Mon, 19 Apr 2010 22:40:54 +0000 (22:40 +0000)] 
Fixed comment in headless so it reflects the new JNI scheme

14 years agoRemoved warnings about unused dependencies
William Bourque [Mon, 19 Apr 2010 22:36:04 +0000 (22:36 +0000)] 
Removed warnings about unused dependencies

14 years agoUnit tests to the tests the modification to the JNI. Removed test with bad pointer...
William Bourque [Mon, 19 Apr 2010 22:22:27 +0000 (22:22 +0000)] 
Unit tests to the tests the modification to the JNI. Removed test with bad pointer as they were likely to SegFault the JVM now

14 years agoBig change in JNI to support multiple trace version in the same Experiment. To use...
William Bourque [Mon, 19 Apr 2010 22:21:22 +0000 (22:21 +0000)] 
Big change in JNI to support multiple trace version in the same Experiment. To use this, the latest C library is needed

14 years ago[Bug309731] Fixed a problem with generic requests and component registration/deregist...
Francois Chouinard [Mon, 19 Apr 2010 19:17:36 +0000 (19:17 +0000)] 
[Bug309731] Fixed a problem with generic requests and component registration/deregistration.

14 years ago[Bug309042] Some improvements on TmfExperiment and its context. Also fixed a number...
Francois Chouinard [Thu, 15 Apr 2010 17:50:41 +0000 (17:50 +0000)] 
[Bug309042] Some improvements on TmfExperiment and its context. Also fixed a number of missing @Override.

14 years ago[Bug309042] Some improvements on TmfExperiment and its context. Also fixed a number...
Francois Chouinard [Thu, 15 Apr 2010 17:50:20 +0000 (17:50 +0000)] 
[Bug309042] Some improvements on TmfExperiment and its context. Also fixed a number of missing @Override.

14 years agoFixed weird logic intruced in commit r24568
William Bourque [Wed, 14 Apr 2010 21:44:54 +0000 (21:44 +0000)] 
Fixed weird logic intruced in commit r24568

14 years agoFixed weird logic intruced in commit r24568
William Bourque [Wed, 14 Apr 2010 21:43:55 +0000 (21:43 +0000)] 
Fixed weird logic intruced in commit r24568

14 years agoChanged Histogram UI a bit
William Bourque [Wed, 14 Apr 2010 21:42:11 +0000 (21:42 +0000)] 
Changed Histogram UI a bit

14 years ago(Possibly) final implementation of the histogram view. Some todos left, still, see...
William Bourque [Tue, 13 Apr 2010 21:39:07 +0000 (21:39 +0000)] 
(Possibly) final implementation of the histogram view. Some todos left, still, see bugzilla.

14 years ago[Bug309042] Improved test code coverage and other mundane issues.
Francois Chouinard [Tue, 13 Apr 2010 20:10:35 +0000 (20:10 +0000)] 
[Bug309042] Improved test code coverage and other mundane issues.

14 years agoTo fix .... error about Override automatically added by Eclipse
William Bourque [Tue, 13 Apr 2010 19:21:37 +0000 (19:21 +0000)] 
To fix .... error about Override automatically added by Eclipse

14 years agoVersion of Histogram ready to replace TimeframeView, waiting for approval.
William Bourque [Tue, 13 Apr 2010 17:56:50 +0000 (17:56 +0000)] 
Version of Histogram ready to replace TimeframeView, waiting for approval.

14 years agoNew generation of HistogramView : first draft of what will replace TimeFrameView
William Bourque [Tue, 13 Apr 2010 05:22:08 +0000 (05:22 +0000)] 
New generation of HistogramView : first draft of what will replace TimeFrameView

14 years agoWorkwaround to SWT not recporting to correct itemHeight in "not gnome desktop". Allow...
William Bourque [Fri, 9 Apr 2010 20:00:18 +0000 (20:00 +0000)] 
Workwaround to SWT not recporting to correct itemHeight in "not gnome desktop". Allow reverting a very ugly hack in TmfTimeStatesCtrl

14 years agoReverting a hack to an old bug about cell alignment. Found a (somehow) better workaround
William Bourque [Fri, 9 Apr 2010 19:58:33 +0000 (19:58 +0000)] 
Reverting a hack to an old bug about cell alignment. Found a (somehow) better workaround

14 years agoFinal modifications to HistogramView before integration in TimeframeView (bugid=308695)
William Bourque [Fri, 9 Apr 2010 19:54:37 +0000 (19:54 +0000)] 
Final modifications to HistogramView before integration in TimeframeView (bugid=308695)

14 years agoMoved all constants into a single file
William Bourque [Thu, 8 Apr 2010 22:16:40 +0000 (22:16 +0000)] 
Moved all constants into a single file

14 years agoSome refactoring in histogram, added javadoc and better comments
William Bourque [Thu, 8 Apr 2010 22:15:58 +0000 (22:15 +0000)] 
Some refactoring in histogram, added javadoc and better comments

14 years agoYet even better histogram view
William Bourque [Wed, 7 Apr 2010 23:33:24 +0000 (23:33 +0000)] 
Yet even better histogram view

14 years agoHistogramView, upgraded
William Bourque [Tue, 6 Apr 2010 22:44:48 +0000 (22:44 +0000)] 
HistogramView, upgraded

14 years agoBetter way of settings Histogram size
William Bourque [Thu, 1 Apr 2010 01:11:41 +0000 (01:11 +0000)] 
Better way of settings Histogram size

14 years agoDraft of a HistogramView, in process of merging into the TimeFrameView
William Bourque [Thu, 1 Apr 2010 00:09:39 +0000 (00:09 +0000)] 
Draft of a HistogramView, in process of merging into the TimeFrameView

14 years agoMarch 24, 2010
Alvaro Sanchez-Leon [Wed, 24 Mar 2010 16:02:24 +0000 (16:02 +0000)] 
March 24, 2010
Add copyright plus cosmetic code formatting changes to new widget test stub files.

14 years agoMarch 24, 2010
Alvaro Sanchez-Leon [Wed, 24 Mar 2010 15:42:19 +0000 (15:42 +0000)] 
March 24, 2010
Added a test stub for the Time Analysis Widget

14 years agoAdded reference to parent tracefile in events to ease operation in the state system
William Bourque [Tue, 23 Mar 2010 18:22:25 +0000 (18:22 +0000)] 
Added reference to parent tracefile in events to ease operation in the state system

14 years agoAdded reference to parent tracefile in events to ease operation in the state system
William Bourque [Tue, 23 Mar 2010 18:22:05 +0000 (18:22 +0000)] 
Added reference to parent tracefile in events to ease operation in the state system

14 years agoFirst set of standalone LTTng "applications". Useful for debug
William Bourque [Mon, 22 Mar 2010 17:16:37 +0000 (17:16 +0000)] 
First set of standalone LTTng "applications". Useful for debug

14 years agoAdded better comments to the Jni files
William Bourque [Fri, 19 Mar 2010 16:16:41 +0000 (16:16 +0000)] 
Added better comments to the Jni files

14 years agoFix Bundle-Version -> Bundle-Vendor typo.
Andrew Overholt [Wed, 17 Mar 2010 20:25:47 +0000 (20:25 +0000)] 
Fix Bundle-Version -> Bundle-Vendor typo.

14 years agoAdd "(Incubation)" to bundle name.
Andrew Overholt [Wed, 17 Mar 2010 20:05:29 +0000 (20:05 +0000)] 
Add "(Incubation)" to bundle name.

14 years agoAdd "(Incubation)" to bundle name.
Andrew Overholt [Wed, 17 Mar 2010 20:04:39 +0000 (20:04 +0000)] 
Add "(Incubation)" to bundle name.

14 years agoExternalize Bundle-Name and Bundle-Vendor.
Andrew Overholt [Wed, 17 Mar 2010 20:01:26 +0000 (20:01 +0000)] 
Externalize Bundle-Name and Bundle-Vendor.

14 years agoFix import function for the ProjectView. Ensure users does not paint themselves in...
William Bourque [Wed, 17 Mar 2010 19:30:23 +0000 (19:30 +0000)] 
Fix import function for the ProjectView. Ensure users does not paint themselves in a corner unless they really wan to.

14 years agoDoes not resize table if item numbers less than 12... better ui output
William Bourque [Wed, 17 Mar 2010 15:51:42 +0000 (15:51 +0000)] 
Does not resize table if item numbers less than 12... better ui output

14 years agoQuick hack to make the TimeFrame view more usable.
Francois Chouinard [Wed, 17 Mar 2010 00:53:04 +0000 (00:53 +0000)] 
Quick hack to make the TimeFrame view more usable.

This page took 0.039246 seconds and 5 git commands to generate.