Changes in / [1:3]


Ignore:
Files:
7 added
10 edited

Legend:

Unmodified
Added
Removed
  • /trunk

    • Property svn:ignore set to
      configure
      configure.files
      Makefile.in
      debug
      kdesvn.kdevelop.pcs
      kdesvn.kdevses
      stamp-h.in
      configure.in
      config.h.in
      autom4te.cache
      acinclude.m4
      aclocal.m4
  • /trunk/src

    • Property svn:ignore set to
      Makefile.in
  • /trunk/src/kdesvnview.cpp

    r1 r2  
    2121 
    2222#include "kdesvnview.h" 
     23#include "listview/kdesvnfilelist.h" 
    2324 
    2425#include <qpainter.h> 
     
    4041    QHBoxLayout *top_layout = new QHBoxLayout(this); 
    4142    top_layout->setAutoAdd(true); 
     43    m_flist=new kdesvnfilelist(this); 
     44    m_flist->openURL(KURL("/home/ral/progs")); 
    4245 
     46#if 0 
    4347    // we want to look for all components that satisfy our needs.  the 
    4448    // trader will actually search through *all* registered KDE 
     
    8791    connect(m_html, SIGNAL(setStatusBarText(const QString&)), 
    8892            this,   SLOT(slotOnURL(const QString&))); 
    89  
     93#endif 
    9094} 
    9195 
     
    102106QString kdesvnView::currentURL() 
    103107{ 
     108#if 0 
    104109    return m_html->url().url(); 
     110#endif 
    105111} 
    106112 
     
    112118void kdesvnView::openURL(const KURL& url) 
    113119{ 
    114     m_html->openURL(url); 
     120    m_flist->openURL(url); 
    115121} 
    116122 
  • /trunk/src/Makefile.am

    r1 r2  
    1212 
    1313# the libraries to link against. 
    14 kdesvn_LDADD   = $(LIB_KFILE) $(LIB_KDEPRINT) 
     14kdesvn_LDADD = $(top_builddir)/src/listview/liblistview.a $(LIB_KFILE) \ 
     15        $(LIB_KDEPRINT) 
    1516 
    1617# which sources should be compiled for kdesvn 
    17 kdesvn_SOURCES = main.cpp kdesvn.cpp kdesvnview.cpp \ 
    18                       pref.cpp kdesvniface.skel 
     18kdesvn_SOURCES = main.cpp kdesvn.cpp kdesvnview.cpp pref.cpp kdesvniface.skel 
    1919 
    2020# these are the headers for your project 
     
    4242rcdir = $(kde_datadir)/kdesvn 
    4343rc_DATA = kdesvnui.rc 
     44 
     45SUBDIRS = listview 
  • /trunk/src/kdesvn.cpp

    r1 r2  
    6363 
    6464    // Apply the create the main window and ask the mainwindow to 
    65                 // automatically save settings if changed: window size, toolbar 
     65        // automatically save settings if changed: window size, toolbar 
    6666    // position, icon size, etc.  Also to add actions for the statusbar 
    67                 // toolbar, and keybindings if necessary. 
    68     setupGUI(); 
     67        // toolbar, and keybindings if necessary. 
     68    //setupGUI(); 
     69    createStandardStatusBarAction(); 
     70    setStandardToolBarMenuEnabled( true ); 
     71    KStdAction::configureToolbars(this,SLOT(configureToolbars() ), actionCollection()); 
     72 
     73    setAutoSaveSettings(); 
     74    //setupGUI(Save|StatusBar|ToolBar); 
    6975 
    7076    // allow the view to change the statusbar and caption 
  • /trunk/src/kdesvnview.h

    r1 r2  
    2929class QPainter; 
    3030class KURL; 
     31class kdesvnfilelist; 
    3132 
    3233/** 
     
    4546    Q_OBJECT 
    4647public: 
    47         /** 
    48         * Default constructor 
    49         */ 
     48    /** 
     49    * Default constructor 
     50    */ 
    5051    kdesvnView(QWidget *parent); 
    5152 
    52         /** 
    53         * Destructor 
    54         */ 
     53    /** 
     54    * Destructor 
     55    */ 
    5556    virtual ~kdesvnView(); 
    5657 
     
    9192 
    9293private: 
    93     KParts::ReadOnlyPart *m_html; 
     94    //KParts::ReadOnlyPart *m_html; 
     95    kdesvnfilelist*m_flist; 
    9496}; 
    9597 
  • /trunk/kdesvn.kdevelop

    r1 r2  
    2727      <mainprogram>src/kdesvn</mainprogram> 
    2828      <terminal>false</terminal> 
     29      <directoryradio>executable</directoryradio> 
     30      <runarguments> 
     31        <kdesvn></kdesvn> 
     32      </runarguments> 
    2933    </run> 
    3034    <make> 
     
    6367      <group pattern="*.po;*.ts" name="Translations" /> 
    6468      <group pattern="*" name="Others" /> 
     69      <hidenonprojectfiles>false</hidenonprojectfiles> 
     70      <hidenonlocation>false</hidenonlocation> 
    6571    </groups> 
    6672    <tree> 
    6773      <hidenonprojectfiles>false</hidenonprojectfiles> 
    6874      <hidepatterns>*.o,*.lo,CVS</hidepatterns> 
     75      <showvcsfields>false</showvcsfields> 
    6976    </tree> 
    7077  </kdevfileview> 
     
    172179    <dest>/home/ral/progs/Projekte/kdesvn</dest> 
    173180  </substmap> 
     181  <kdevcppsupport> 
     182    <references> 
     183      <pcs>KDElibs</pcs> 
     184      <pcs>Qt</pcs> 
     185    </references> 
     186    <codecompletion> 
     187      <includeGlobalFunctions>true</includeGlobalFunctions> 
     188      <includeTypes>true</includeTypes> 
     189      <includeEnums>true</includeEnums> 
     190      <includeTypedefs>false</includeTypedefs> 
     191      <automaticCodeCompletion>true</automaticCodeCompletion> 
     192      <automaticArgumentsHint>true</automaticArgumentsHint> 
     193      <automaticHeaderCompletion>true</automaticHeaderCompletion> 
     194      <codeCompletionDelay>250</codeCompletionDelay> 
     195      <argumentsHintDelay>400</argumentsHintDelay> 
     196      <headerCompletionDelay>250</headerCompletionDelay> 
     197    </codecompletion> 
     198  </kdevcppsupport> 
    174199</kdevelop> 
  • /trunk/doc

    • Property svn:ignore set to
      Makefile.in
  • /trunk/doc/en

    • Property svn:ignore set to
      Makefile.in
  • /trunk/po

    • Property svn:ignore set to
      Makefile.in
Note: See TracChangeset for help on using the changeset viewer.

Ihr Browser versucht gerade eine Seite aus dem sogenannten Internet auszudrucken. Das Internet ist ein weltweites Netzwerk von Computern, das den Menschen ganz neue Möglichkeiten der Kommunikation bietet.

Da Politiker im Regelfall von neuen Dingen nichts verstehen, halten wir es für notwendig, sie davor zu schützen. Dies ist im beidseitigen Interesse, da unnötige Angstzustände bei Ihnen verhindert werden, ebenso wie es uns vor profilierungs- und machtsüchtigen Politikern schützt.

Sollten Sie der Meinung sein, dass Sie diese Internetseite dennoch sehen sollten, so können Sie jederzeit durch normalen Gebrauch eines Internetbrowsers darauf zugreifen. Dazu sind aber minimale Computerkenntnisse erforderlich. Sollten Sie diese nicht haben, vergessen Sie einfach dieses Internet und lassen uns in Ruhe.

Die Umgehung dieser Ausdrucksperre ist nach §95a UrhG verboten.

Mehr Informationen unter www.politiker-stopp.de.