forked from Edirom/Edirom-Online
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
elena1113
committed
Jul 30, 2015
1 parent
b1b0715
commit b0afef0
Showing
11 changed files
with
9,966 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/** | ||
* Edirom Online | ||
* Copyright (C) 2014 The Edirom Project | ||
* http://www.edirom.de | ||
* | ||
* Edirom Online is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Edirom Online is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with Edirom Online. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
Ext.define('EdiromOnline.controller.window.source.VerovioView', { | ||
|
||
extend: 'Ext.app.Controller', | ||
|
||
views: [ | ||
'window.source.VerovioView' | ||
], | ||
|
||
init: function() { | ||
this.control({ | ||
'verovioView': { | ||
// afterlayout: this.onSourceViewRendered, | ||
// beforedestroy: this.onSourceViewDestroyed, | ||
single: true | ||
} | ||
}); | ||
} | ||
|
||
/* onSourceViewRendered: function(view) { | ||
var me = this; | ||
if(view.initialized) return; | ||
view.initialized = true; | ||
view.on('measureVisibilityChange', me.onMeasureVisibilityChange, me); | ||
view.on('annotationsVisibilityChange', me.onAnnotationsVisibilityChange, me); | ||
view.on('overlayVisiblityChange', me.onOverlayVisibilityChange, me); | ||
view.on('gotoMovement', me.onGotoMovement, me); | ||
view.on('gotoMeasureByName', me.onGotoMeasureByName, me); | ||
view.on('gotoMeasure', me.onGotoMeasure, me); | ||
view.on('gotoZone', me.onGotoZone, me); | ||
ToolsController.addMeasureVisibilityListener(view.id, Ext.bind(view.checkGlobalMeasureVisibility, view)); | ||
view.checkGlobalMeasureVisibility(ToolsController.areMeasuresVisible()); | ||
ToolsController.addAnnotationVisibilityListener(view.id, Ext.bind(view.checkGlobalAnnotationVisibility, view)); | ||
view.checkGlobalAnnotationVisibility(ToolsController.areAnnotationsVisible()); | ||
Ext.Ajax.request({ | ||
url: 'data/xql/getMovements.xql', | ||
method: 'GET', | ||
params: { | ||
uri: view.uri | ||
}, | ||
success: function(response){ | ||
var data = response.responseText; | ||
var movements = Ext.create('Ext.data.Store', { | ||
fields: ['id', 'name'], | ||
data: Ext.JSON.decode(data) | ||
}); | ||
me.movementsLoaded(movements, view); | ||
} | ||
}); | ||
}*/ | ||
|
||
|
||
}); |
Oops, something went wrong.