X-Git-Url: https://git.sven.stormbind.net/?a=blobdiff_plain;f=src%2Fvymmodelwrapper.h;fp=src%2Fvymmodelwrapper.h;h=13052d469dad11772720dd4766c297989dc4bd5e;hb=d483bd8e6523c23c6f1d8908a2e0611c2bc9ff4f;hp=0000000000000000000000000000000000000000;hpb=7dfa3fe589d1722d49681f42cdb0bf1e6efb5223;p=sven%2Fvym.git diff --git a/src/vymmodelwrapper.h b/src/vymmodelwrapper.h new file mode 100644 index 0000000..13052d4 --- /dev/null +++ b/src/vymmodelwrapper.h @@ -0,0 +1,175 @@ +#ifndef VYMMODELWRAPPER_H +#define VYMMODELWRAPPER_H + +#include "scripting.h" +#include +#include +#include +#include +#include +#include + +class BranchItem; +class VymModel; + +class VymModelWrapper : public VymScriptContext { + Q_OBJECT + public: + VymModelWrapper(VymModel *m); + /* + QString setResult( QString r ); + bool setResult( bool r ); + int setResult( int r ); + */ + + private: + BranchItem *getSelectedBranch(); + QVariant getParameter(bool &ok, const QString &key, + const QStringList ¶meters); + + public slots: + void addBranch(); + void addBranchBefore(); + void addMapCenter(qreal x, qreal y); + void addMapInsert(QString filename, int pos, int contentFilter); + void addMapInsert(const QString &filename, int pos); + void addMapInsert(const QString &filename); + void addMapReplace(QString filename); + void addSlide(); + void addXLink(const QString &begin, const QString &end, int width, + const QString &color, const QString &penstyle); + int branchCount(); + int centerCount(); + void centerOnID(const QString &id); // tested: ok + void clearFlags(); + void colorBranch(const QString &color); + void colorSubtree(const QString &color); + void copy(); + void cut(); + void cycleTask(); + int depth(); + bool exportMap(); + int getBranchIndex(); + QString getDestPath(); + QString getFileDir(); + QString getFileName(); + QString getFrameType(); + QString getHeadingPlainText(); + QString getHeadingXML(); + QString getMapAuthor(); + QString getMapComment(); + QString getMapTitle(); + QString getNotePlainText(); + QString getNoteXML(); + QString getSelectionString(); + int getTaskPriorityDelta(); + QString getTaskSleep(); + int getTaskSleepDays(); + QString getURL(); + QString getVymLink(); + QString getXLinkColor(); + int getXLinkWidth(); + QString getXLinkPenStyle(); + QString getXLinkStyleBegin(); + QString getXLinkStyleEnd(); + bool hasActiveFlag(const QString &flag); + bool hasNote(); + bool hasRichTextNote(); + bool hasTask(); + void importDir(const QString &path); + bool initIterator(const QString &iname, bool deepLevelsFirst = false); + bool isScrolled(); + void loadImage(const QString &filename); + void loadNote(const QString &filename); + void move(qreal x, qreal y); + void moveRel(qreal x, qreal y); + void moveDown(); + void moveUp(); + void moveSlideDown(int n); + void moveSlideDown(); + void moveSlideUp(int n); + void moveSlideUp(); + bool nextIterator(const QString &iname); + void nop(); + void note2URLs(); + bool parseVymText(const QString &text); + void paste(); + void redo(); + bool relinkTo(const QString &parent, int num, qreal x, qreal y); + bool relinkTo(const QString &parent, int num); + bool relinkTo(const QString &parent); + void remove(); + void removeChildren(); + void removeKeepChildren(); + void removeSlide(int n); + QVariant repeatLastCommand(); + void saveImage(const QString &filename); + void saveNote(const QString &filename); + void scroll(); + bool select(const QString &s); + bool selectID(const QString &s); + bool selectFirstBranch(); + bool selectFirstChildBranch(); + bool selectLastBranch(); + bool selectLastChildBranch(); + bool selectLastImage(); + bool selectParent(); + bool selectLatestAdded(); + bool selectToggle(const QString &selectString); + void setFlagByName(const QString &s); + void setHeadingConfluencePageName(); + void setHeadingPlainText(const QString &s); + void setHideExport(bool b); + void setHideLinkUnselected(bool b); + void setIncludeImagesHorizontally(bool b); + void setIncludeImagesVertically(bool b); + void setMapAnimCurve(int n); + void setMapAnimDuration(int n); + void setMapAuthor(const QString &s); + void setMapBackgroundColor(const QString &color); + void setMapComment(const QString &s); + void setMapDefLinkColor(const QString &color); + void setMapLinkStyle(const QString &style); + void setMapRotation(float a); // tested: ok + void setMapTitle(const QString &s); + void setMapZoom(float z); // tested: ok + void setNotePlainText(const QString &s); + void setFrameBorderWidth(int border); + void setFrameBrushColor(const QString &color); + void setFrameIncludeChildren(bool b); + void setFramePadding(int padding); + void setFramePenColor(const QString &color); + void setFrameType(const QString &type); + void setScaleFactor(qreal f); + void setSelectionBrushColor(const QString &color); + void setSelectionPenColor(const QString &color); + void setSelectionPenWidth(const qreal &); + void setTaskPriorityDelta(const int &n); + bool setTaskSleep(const QString &s); + void setURL(const QString &s); + void setVymLink(const QString &s); + void setXLinkColor(const QString &color); + void setXLinkStyle(const QString &style); + void setXLinkStyleBegin(const QString &style); + void setXLinkStyleEnd(const QString &style); + void setXLinkWidth(int w); + void sleep(int n); + void sortChildren(bool b); + void sortChildren(); + void toggleFlagByUid(const QString &s); + void toggleFlagByName(const QString &s); + void toggleFrameIncludeChildren(); + void toggleScroll(); + void toggleTarget(); + void toggleTask(); + void undo(); + bool unscroll(); + void unscrollChildren(); + void unselectAll(); + void unsetFlagByName(const QString &s); + + private: + VymModel *model; +}; + +#endif