User:Dhaumann: Difference between revisions

    From KDE TechBase
    No edit summary
    No edit summary
    Line 1: Line 1:
    == Kate in KDE5 ==
    Use Okular / Amarok's passive popup class to display things like "13 replacements done" or "Document successfully loaded". The needed class is PageViewMessage in the files [https://projects.kde.org/projects/kde/kdegraphics/okular/repository/revisions/master/entry/ui/pageviewutils.cpp pageviewutils.cpp] and [https://projects.kde.org/projects/kde/kdegraphics/okular/repository/revisions/master/entry/ui/pageviewutils.h pageview.h]. Maybe it is a good idea to alter the function slightly from
    void display( const QString & message, const QString & details = QString(), Icon icon = Info, int durationMs = 4000 );
    to
    void display( const QString & message, const QString & details = QString(), Icon icon = Info, Qt::Corner corner = Qt::TopLeft, durationMs = 4000 );
    == TODO ==
    == TODO ==
    * Excellent Articles
    * Excellent Articles

    Revision as of 17:46, 7 June 2011

    Kate in KDE5

    Use Okular / Amarok's passive popup class to display things like "13 replacements done" or "Document successfully loaded". The needed class is PageViewMessage in the files pageviewutils.cpp and pageview.h. Maybe it is a good idea to alter the function slightly from

    void display( const QString & message, const QString & details = QString(), Icon icon = Info, int durationMs = 4000 );
    

    to

    void display( const QString & message, const QString & details = QString(), Icon icon = Info, Qt::Corner corner = Qt::TopLeft, durationMs = 4000 );
    

    TODO

    attic

    Setup a KDE4 development environment

    Test

    Status Project Description
    (Contact)
    TODO Project This is some dummy text.
    TODO Project This is some dummy text to test wrap around.
    TODO Project This is some dummy text to test wrap around. Test all scenarios to see what happens.
    TODO Project This is some dummy text to test wrap around. Test all scenarios to see what happens with the position of the author.

    Todos

    todo: integrate (+ validate for kde4) those pages into sane locations ;)

    • Common Programming Mistakes
    hey, the first one we have not ported yet. should be moved for kde4 into Development/Tutorials (TODO)
    Thinking more about it, it could be an extension of Policies/Library_Code_Policy, i.e. as subpage like Policies/Library_Code_Policy/Common Mistakes (although it's not only about libraries...)
    • KDE Developer's Checklist
    looks very old. if migrated, please fix it for kde3 or even kde4 (TODO)
    • What is Scripty?
    indeed a TODO :)

    see: http://developer.kde.org/documentation/other/index.html

    Reviewed Articles