removed eUBDockPaletteType_NAVIGATOR type because isn't a good type

preferencesAboutTextFull
Claudio Valerio 12 years ago
parent 51467d4710
commit 8105a53194
  1. 2
      src/gui/UBDockPalette.cpp
  2. 3
      src/gui/UBDockPalette.h
  3. 7
      src/gui/UBNavigatorPalette.cpp

@ -533,7 +533,7 @@ bool UBDockPalette::switchMode(eUBDockPaletteWidgetMode mode)
{ {
bool hasVisibleElements = false; bool hasVisibleElements = false;
//-------------------------------// //-------------------------------//
// get full right palette widgets list, parse it, show all widgets for BOARD mode, and hide all other // get full palette widgets list, parse it, show all widgets for BOARD mode, and hide all other
for(int i = 0; i < mRegisteredWidgets.size(); i++) for(int i = 0; i < mRegisteredWidgets.size(); i++)
{ {
UBDockPaletteWidget* pNextWidget = mRegisteredWidgets.at(i); UBDockPaletteWidget* pNextWidget = mRegisteredWidgets.at(i);

@ -79,8 +79,7 @@ private:
typedef enum typedef enum
{ {
eUBDockPaletteType_LEFT, eUBDockPaletteType_LEFT,
eUBDockPaletteType_RIGHT, eUBDockPaletteType_RIGHT
eUBDockPaletteType_NAVIGATOR,
} eUBDockPaletteType; } eUBDockPaletteType;

@ -24,18 +24,13 @@
* @param name as the object name * @param name as the object name
*/ */
UBNavigatorPalette::UBNavigatorPalette(QWidget *parent, const char *name): UBNavigatorPalette::UBNavigatorPalette(QWidget *parent, const char *name):
UBDockPalette(eUBDockPaletteType_NAVIGATOR, parent, name) UBDockPalette(eUBDockPaletteType_LEFT, parent, name)
, mNavigator(NULL) , mNavigator(NULL)
, mLayout(NULL) , mLayout(NULL)
, mHLayout(NULL) , mHLayout(NULL)
, mPageNbr(NULL) , mPageNbr(NULL)
, mClock(NULL) , mClock(NULL)
{ {
setOrientation(eUBDockOrientation_Left);
setMaximumWidth(300);
resize(UBSettings::settings()->navigPaletteWidth->get().toInt(), height());
mLastWidth = 300;
// Build the gui // Build the gui
mLayout = new QVBoxLayout(this); mLayout = new QVBoxLayout(this);
mLayout->setContentsMargins(customMargin(), customMargin(), 2*border() + customMargin(), customMargin()); mLayout->setContentsMargins(customMargin(), customMargin(), 2*border() + customMargin(), customMargin());

Loading…
Cancel
Save