Name | Modified | Size | Downloads / Week |
---|---|---|---|
README.md | 2013-01-13 | 4.3 kB | |
ionPulse_0.3.dmg | 2013-01-13 | 19.2 MB | |
Totals: 2 Items | 19.2 MB | 0 |
ionPulse IDE
The goal of the project is to create a fast, fully functional IDE, extendable and customisable by developers using it.
To achieve this goal, the Qt framework is chosen as it provides a native implementation across multiple platforms. The Look & Feel of Qt projects is both suitable for the platform it is executed on and is also customisable using the widely known CSS standard. The flexibility is achieved by providing Javascript bindings to both the IDE plugins (C++) and the whole Qt framework.
Start Hacking!
Download from SourceForge (due to limited resources, only Mac OS version is available ATM).
Or build it for your platform: preparing your environment can be a somewhat involved task, so this option is currently suggested only to experienced users. Project documentation defines the requirements and instructions for building the project.
Once you get it working, check the files in the main app directory:
- ionPulse.css - this is where the css is defined (pulling from the user home directory is planned);
- js/ionPulse.js - this is the main entry for loading the javascript files;
- ~/.ionPulse/init.js - the user file for customisations.
Create! :)
Example
Lets create a custom syntax highlighter. We'll start this by defining a new file type. The following command will register a file type "text/slides" for all the files which end as ".slides":
registerFileType("slides", "text/slides");
The syntax highligter implemented in ionPulse is a state machine, so our next step is to define some highlighting states and transitions from one state to another:
textHighlighter.addTransitions({
"slides/body": {
"slides/header": textHighlighter.regexTransition(/^\./g, true),
"slides/space": textHighlighter.regexTransition(/^___$/g, true),
},
"slides/header": {
"slides/body": textHighlighter.regexTransition(/$/g, false),
},
"slides/space": {
"slides/body": textHighlighter.regexTransition(/$/g, false),
}
});
Each of the states should already have a default formatting, but in addition to that, we would like to add some semi-states, where the highlighting execution stays in the same state, however the text is formatted differently.
textHighlighter.addHighlightRules({
"slides/body" : {
"black": /\*[^*]+\*/g, // some *important* text
"emphasis": /\/[^\/]+\//g, // some /emphasised/ text
}
});
The important bit in syntax highlighting is the text formatting. Lets define it for our states and highlighting rules:
textHighlighter.addTextFormatting({
// color, weight, italic, size, backgroundColor
"slides/body": [toColor('706050'), QFont.Normal, false, 64, null],
"slides/header": [toColor('805040'), QFont.Normal, false, 96, null],
"slides/body/black": [toColor('000000'), QFont.Black, false, 64, null],
"slides/body/emphasis": [toColor('706050'), QFont.Normal, true, 64, null],
"slides/space": [toColor('e0a0a0'), QFont.Normal, false, 500, null]
});
The last bit is to set the starting state when highlighting "text/slides" files:
textHighlighter.setDefaultState('text/slides', 'slides/body');
While the syntax highlighter above works ok, we might also want to change the background colour of the file editor. Changing it using backgroundColor parameter in the text formatting description might not be what we want - as it would only change the background colour of the edited text, leaving the editor window colour as it is set by the default stylesheet. The snippet below will change the style of any editor, opened to edit the "text/slides" files:
editorPlugin.editorOpened.connect(
this,
function (editor) {
if (editor.property("fileType") === 'text/slides') {
editor.setStyleSheet("background-color: #fab976");
}
}
);
That's it! Put all the given code into your ~/.ionPulse/init.js file and you'll have a custom syntax highlighter :)