| Line 4: | Line 4: | ||
This task is mostly done, this is the API I came out with: | This task is mostly done, this is the API I came out with: | ||
| − | The syntax I'd like to came up with is | + | The syntax I'd like to came up with is: |
<div class="codebox"> | <div class="codebox"> | ||
<div class="codebarbg">Code</div> | <div class="codebarbg">Code</div> | ||
| Line 15: | Line 15: | ||
</div><noinclude> | </div><noinclude> | ||
or something like that | or something like that | ||
| − | ==== Packager ==== | + | |
| + | ==== Packager API ==== | ||
* '''Plasmagik::PackageType''' -> Predefined list of package types. See packaging.txt for the complete list. | * '''Plasmagik::PackageType''' -> Predefined list of package types. See packaging.txt for the complete list. | ||
| − | * '''setPackageType(Plasmagik::PackageType, bool clearFirst)''' clearFirst will | + | * '''setPackageType(Plasmagik::PackageType, bool clearFirst)''' If clearFirst == true, clearProgrammingLanuages() will be called. |
| + | * '''setProgrammingLanguages(QString/QStringList &languages)''' If languages is QString, languages are separated by '|'. It will call clearProgrammingLanguages(). | ||
| + | * '''QString/QStringList programmingLanguages()''' | ||
| + | * '''addProgrammingLanguages(QString/QStringList &languages)''' Same as setProgammingLanguages, but it won't call clearProgrammingLanguages() first, and will add languages to the end. | ||
| + | * '''clearProgrammingLanguages()''' It will remove any language previously set. | ||
| + | |||
| + | ===== Proposed improvements ===== | ||
| + | * Renaming *ProgrammingLanguages --> *Languages | ||
| + | |||
| + | ==== Networking API ==== | ||
| + | * '''TODO!''' | ||
| Note |
|---|
| Names are just temporary. Please don't trust this page as probably most of the things are going to heavily change during this 1 month developement marathone. |
Contents |
This task is mostly done, this is the API I came out with:
The syntax I'd like to came up with is:
Plasmagik packager;
packager.setPackageType(...);
packager.setSomething();
packager.show();
or something like that