1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
|
/**
* Yudit Unicode Editor Source File
*
* GNU Copyright (C) 1997-2023 Gaspar Sinai <gaspar@yudit.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2,
* dated June 1991. See file COPYYING for details.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "swidget/SListBox.h"
#include "swindow/SAwt.h"
static int getSliderWidth () {
// return 20 * SAwt::getRasterScale();
return (int) (SAwt::getScale() * 20.0);
}
SListBox::SListBox (const SString& title) : border(SBorder::ETCHED)
{
SPanel::forceLayout (SLayout (SDimension (1000,1000)));
topLabel = new SLabel (title);
// topLabel->changeStyle (SBorder::SOLID_VISIBLE);
topLabel->setAlignment (SD_Center);
textList = new STextList();
slider = new SSlider();
add (topLabel);
add (textList);
add (slider);
recalc ();
}
void
SListBox::resize(const SDimension& d)
{
// fprintf (stderr, "XXX ListBox Panel %u,%u\n", d.width, d.height);
border.resize(d);
SPanel::resize (d);
}
void
SListBox::redraw (SCanvas *canvas, int x, int y,
unsigned int width, unsigned int height)
{
border.redraw(canvas, x, y, width, height);
}
SListBox::~SListBox ()
{
}
void
SListBox::setText (const SStringVector& v)
{
textList->setText (v);
}
void
SListBox::setListListener (SListListener* l)
{
textList->setListListener (l);
}
/**
* recalculate the layout
*/
void
SListBox::recalc()
{
const SDimension& bd = border.getBorderSize();
int lh = (int) topLabel->getPreferredSize().height;
if (lh < 4) lh = 4;
int dheight = lh * 2;
int dwidth = (int) topLabel->getPreferredSize().width + 2 * (int) bd.width;
if (dheight < 20)dheight = 20 ;
if (dwidth < 30) dwidth = 30;
preferredSize = SDimension (dwidth, dheight);
topLabel->setLayout (
SLayout (
SLocation (bd.width,bd.height),
SLocation (dwidth-(int)bd.width, lh+(int)bd.height),
SLocation (0, 0),
SLocation (100, 0)
)
);
int tw = (int)dwidth - getSliderWidth() - (int) bd.width;
textList->setLayout (
SLayout (
SLocation (bd.width, lh+bd.height),
SLocation (tw, (int)dheight - (int)bd.height),
SLocation (0, 0),
SLocation (100, 100)
)
);
slider->setLayout (
SLayout (
SLocation (tw, lh+(int)bd.height),
SLocation (tw+getSliderWidth(), (int)dheight - (int)bd.height),
SLocation (100, 0),
SLocation (100, 100)
)
);
/* save current */
SLayout goodlayout = layout;
/* pretend we have this layout */
forceLayout (preferredSize);
/* accept old layout */
setLayout (goodlayout);
}
void
SListBox::setBackground (const SColor& bg)
{
SPanel::setBackground (bg);
border.setBackground (bg);
}
bool
SListBox::selectText (const SString& s)
{
return textList->selectText (s);
}
bool
SListBox::selectItem (int item)
{
return textList->selectItem (item);
}
void
SListBox::setLabelForeground (const SColor& fg)
{
topLabel->setForeground (fg);
}
void
SListBox::setSliderBackground (const SColor& bg)
{
slider->setSliderBackground (bg);
}
void
SListBox::setFont (const SString& font, double fontSize)
{
topLabel->setFont (font, fontSize);
textList->setFont (font, fontSize);
recalc();
}
void
SListBox::setFontSize (double fontSize)
{
topLabel->setFontSize (fontSize);
textList->setFontSize (fontSize);
recalc();
}
|