X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/4bf793794fd3842b857acde4af5db83be3a1f15d..abf17941f7:/src/urlnavigator.h diff --git a/src/urlnavigator.h b/src/urlnavigator.h index 6a3d7d579..9482619d6 100644 --- a/src/urlnavigator.h +++ b/src/urlnavigator.h @@ -26,11 +26,11 @@ #include #include -class QCheckBox; class QHBoxLayout; class QLabel; class QLineEdit; class QMouseEvent; +class QPushButton; class KUrl; class KFileItem; @@ -243,11 +243,11 @@ private slots: void slotRedirection(const KUrl&, const KUrl&); /** - * Switches the navigation bar between the editable and noneditable - * state (see setUrlEditable()) and is connected to the clicked signal + * Switches the navigation bar between the breadcrumb view and the + * traditional view (see setUrlEditable()) and is connected to the clicked signal * of the navigation bar button. */ - void slotClicked(); + void switchView(); private: /** @@ -294,13 +294,14 @@ private: QHBoxLayout* m_layout; QLinkedList m_history; - QCheckBox* m_toggleButton; + QPushButton* m_toggleButton; BookmarkSelector* m_bookmarkSelector; KUrlComboBox* m_pathBox; ProtocolCombo* m_protocols; QLabel* m_protocolSeparator; QLineEdit* m_host; QLinkedList m_navButtons; + QWidget* m_filler; //UrlStack m_urls; };