fluxbox/src/ClockTool.cc

341 lines
11 KiB
C++
Raw Normal View History

2003-08-11 14:32:39 +00:00
// ClockTool.cc
2006-02-16 06:53:05 +00:00
// Copyright (c) 2003 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org)
2003-08-11 14:32:39 +00:00
// and Simon Bowden (rathnor at users.sourceforge.net)
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
#include "ClockTool.hh"
#include "ToolTheme.hh"
#include "Screen.hh"
#include "FbTk/CommandParser.hh"
2003-12-19 18:26:48 +00:00
#include "CommandDialog.hh"
#include "fluxbox.hh"
2003-08-11 14:32:39 +00:00
#include "FbTk/MemFun.hh"
2003-08-11 14:32:39 +00:00
#include "FbTk/SimpleCommand.hh"
#include "FbTk/ImageControl.hh"
#include "FbTk/TextUtils.hh"
2003-12-04 23:02:23 +00:00
#include "FbTk/Menu.hh"
#include "FbTk/MenuItem.hh"
#include "FbTk/I18n.hh"
#include "FbTk/FbTime.hh"
2003-08-11 14:32:39 +00:00
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif // HAVE_CONFIG_H
2004-08-31 15:26:40 +00:00
#ifdef HAVE_CTIME
#include <ctime>
#else
#include <time.h>
#endif
2005-05-12 19:58:47 +00:00
#include <typeinfo>
#include <cstdio>
namespace {
const char SWITCHES_SECONDS[] = "crsSTX+";
const char SWITCHES_12_24H[] = "lIrkHT";
const char SWITCHES_24_12H[] = "kHTlIr";
const char SWITCH_AM_PM[] = "pP";
/**
* return true if clock shows seconds. If clock doesn't show seconds then
* there is no need to wake up every second to redraw the clock.
*/
int showSeconds(const std::string& fmt_string) {
return FbTk::StringUtil::findCharFromAlphabetAfterTrigger(
fmt_string, '%', SWITCHES_SECONDS, sizeof(SWITCHES_SECONDS), 0) != std::string::npos;
}
uint64_t calcNextTimeout(const std::string& fmt_string) {
if (showSeconds(fmt_string)) { // microseconds till next full second
return FbTk::FbTime::remainingNext(FbTk::FbTime::IN_SECONDS);
2012-09-14 06:52:13 +00:00
}
// microseconds until next full minute
return FbTk::FbTime::remainingNext(60L * FbTk::FbTime::IN_SECONDS);
}
} // end of anonymous namespace
2003-12-04 23:02:23 +00:00
class ClockMenuItem: public FbTk::MenuItem {
public:
explicit ClockMenuItem(ClockTool &tool):
FbTk::MenuItem(FbTk::BiDiString("")), m_tool(tool) {
setClockModeLabel();
setCloseOnClick(false);
2003-12-04 23:02:23 +00:00
}
void click(int button, int time, unsigned int mods) {
// does the current format string contain something with 24/12h?
size_t found;
size_t pos = FbTk::StringUtil::findCharFromAlphabetAfterTrigger(
m_tool.timeFormat(), '%', SWITCHES_24_12H, sizeof(SWITCHES_24_12H), &found);
2007-12-30 15:32:53 +00:00
if (pos != std::string::npos) { // if so, exchange it with 12/24h
std::string newformat = m_tool.timeFormat();
newformat[pos+1] = SWITCHES_12_24H[found];
2003-12-04 23:02:23 +00:00
if (found < 3) { // 24h? erase %P/%p (AM|PM / am|pm)
pos = FbTk::StringUtil::findCharFromAlphabetAfterTrigger(
newformat, '%', SWITCH_AM_PM, sizeof(SWITCH_AM_PM), 0);
if (pos != std::string::npos) {
2003-12-04 23:02:23 +00:00
newformat.erase(pos, 2);
}
2003-12-04 23:02:23 +00:00
}
m_tool.setTimeFormat(newformat);
setClockModeLabel();
2007-12-30 15:32:53 +00:00
2003-12-04 23:02:23 +00:00
} // else some other strange format...so we don't do anything
FbTk::MenuItem::click(button, time, mods);
2003-12-04 23:02:23 +00:00
}
private:
void setClockModeLabel() {
_FB_USES_NLS;
if (FbTk::StringUtil::findCharFromAlphabetAfterTrigger(
m_tool.timeFormat(), '%', SWITCHES_24_12H, 3, 0) != std::string::npos) {
setLabel( _FB_XTEXT(Toolbar, Clock24, "Clock: 24h", "set Clockmode to 24h") );
} else {
setLabel( _FB_XTEXT(Toolbar, Clock12, "Clock: 12h", "set Clockmode to 12h") );
}
}
2003-12-04 23:02:23 +00:00
ClockTool &m_tool;
};
class EditClockFormatCmd: public FbTk::Command<void> {
2003-12-19 18:26:48 +00:00
public:
void execute() {
BScreen *screen = Fluxbox::instance()->mouseScreen();
if (screen == 0)
return;
std::string resourcename = screen->name() + ".strftimeFormat";
2007-12-30 15:32:53 +00:00
CommandDialog *dialog = new CommandDialog(*screen, "Edit Clock Format",
2003-12-19 18:26:48 +00:00
"SetResourceValue " + resourcename + " ");
FbTk::RefCount<FbTk::Command<void> > cmd(FbTk::CommandParser<void>::instance().parse("reconfigure"));
2003-12-19 18:26:48 +00:00
dialog->setPostCommand(cmd);
dialog->setText(screen->resourceManager().resourceValue(resourcename));
dialog->show();
}
};
2003-08-11 14:32:39 +00:00
ClockTool::ClockTool(const FbTk::FbWindow &parent,
2008-01-05 01:39:19 +00:00
FbTk::ThemeProxy<ToolTheme> &theme, BScreen &screen,
FbTk::Menu &menu):
2003-08-11 14:32:39 +00:00
ToolbarItem(ToolbarItem::FIXED),
m_button(parent, theme->font(), FbTk::BiDiString("")),
2003-08-11 14:32:39 +00:00
m_theme(theme),
m_screen(screen),
m_pixmap(0),
2007-12-30 15:32:53 +00:00
m_timeformat(screen.resourceManager(), std::string("%k:%M"),
screen.name() + ".strftimeFormat", screen.altName() + ".StrftimeFormat"),
m_stringconvertor(FbTk::StringConvertor::ToFbString) {
2003-08-11 20:29:30 +00:00
// attach signals
m_tracker.join(theme.reconfigSig(), FbTk::MemFun(*this, &ClockTool::themeReconfigured));
2003-08-11 14:32:39 +00:00
std::string time_locale = setlocale(LC_TIME, NULL);
size_t pos = time_locale.find('.');
if (pos != std::string::npos)
time_locale = time_locale.substr(pos+1);
if (!time_locale.empty())
m_stringconvertor.setSource(time_locale);
_FB_USES_NLS;
m_timer.setTimeout(calcNextTimeout(*m_timeformat));
FbTk::RefCount<FbTk::Command<void> > update_graphic(new FbTk::SimpleCommand<ClockTool>(*this,
2003-08-11 14:32:39 +00:00
&ClockTool::updateTime));
m_timer.setCommand(update_graphic);
m_timer.start();
2008-01-05 01:39:19 +00:00
m_button.setGC(m_theme->textGC());
2003-12-19 18:26:48 +00:00
// setup menu
FbTk::RefCount<FbTk::Command<void> > saverc(FbTk::CommandParser<void>::instance().parse("saverc"));
FbTk::MenuItem *item = new ClockMenuItem(*this);
item->setCommand(saverc);
menu.insert(item);
FbTk::RefCount<FbTk::Command<void> > editformat_cmd(new EditClockFormatCmd());
menu.insert(_FB_XTEXT(Toolbar, ClockEditFormat, "Edit Clock Format", "edit Clock Format") , editformat_cmd);
2003-12-19 18:26:48 +00:00
themeReconfigured();
2003-08-11 14:32:39 +00:00
}
ClockTool::~ClockTool() {
// remove cached pixmap
if (m_pixmap)
m_screen.imageControl().removeImage(m_pixmap);
}
void ClockTool::move(int x, int y) {
m_button.move(x, y);
}
void ClockTool::resize(unsigned int width, unsigned int height) {
m_button.resize(width, height);
reRender();
m_button.clear();
2003-08-11 14:32:39 +00:00
}
void ClockTool::moveResize(int x, int y,
unsigned int width, unsigned int height) {
m_button.moveResize(x, y, width, height);
reRender();
m_button.clear();
2003-08-11 14:32:39 +00:00
}
void ClockTool::show() {
m_button.show();
}
void ClockTool::hide() {
m_button.hide();
}
2003-12-04 23:02:23 +00:00
void ClockTool::setTimeFormat(const std::string &format) {
*m_timeformat = format;
themeReconfigured();
2003-12-04 23:02:23 +00:00
}
void ClockTool::themeReconfigured() {
2003-08-11 14:32:39 +00:00
updateTime();
2003-08-13 10:08:18 +00:00
2003-08-15 14:00:20 +00:00
// + 2 to make the entire text fit inside
2007-10-13 21:51:37 +00:00
// we only replace numbers with zeros because everything else should be
// relatively static. If we replace all text with zeros then widths of
// proportional fonts with some strftime formats will be considerably off.
FbTk::FbString text(m_button.text().logical());
2007-10-13 21:51:37 +00:00
int textlen = text.size();
for (int i=0; i < textlen; ++i) {
if (isdigit(text[i])) // don't bother replacing zeros
text[i] = '0';
}
text.append("00"); // pad
2003-08-13 10:08:18 +00:00
unsigned int new_width = m_button.width();
unsigned int new_height = m_button.height();
translateSize(orientation(), new_width, new_height);
new_width = m_theme->font().textWidth(text.c_str(), text.size());
translateSize(orientation(), new_width, new_height);
if (new_width != m_button.width() || new_height != m_button.height()) {
resize(new_width, new_height);
resizeSig().emit();
2004-08-25 17:16:40 +00:00
}
2003-08-13 10:08:18 +00:00
}
2007-12-30 15:32:53 +00:00
unsigned int ClockTool::borderWidth() const {
2003-08-13 10:08:18 +00:00
return m_button.borderWidth();
2003-08-11 14:32:39 +00:00
}
unsigned int ClockTool::width() const {
2003-08-11 20:29:30 +00:00
return m_button.width();
2003-08-11 14:32:39 +00:00
}
unsigned int ClockTool::height() const {
return m_button.height();
}
void ClockTool::updateTime() {
m_timer.setTimeout(calcNextTimeout(*m_timeformat));
time_t the_time = time(NULL);
2003-08-11 14:32:39 +00:00
if (the_time != -1) {
char time_string[255];
int time_string_len;
2003-08-11 14:32:39 +00:00
struct tm *time_type = localtime(&the_time);
if (time_type == 0)
return;
#ifdef HAVE_STRFTIME
time_string_len = strftime(time_string, 255, m_timeformat->c_str(), time_type);
if( time_string_len == 0)
return;
std::string text = m_stringconvertor.recode(time_string);
if (m_button.text().logical() == text)
2003-08-11 14:32:39 +00:00
return;
m_button.setText(text);
2008-01-05 01:39:19 +00:00
unsigned int new_width = m_theme->font().textWidth(time_string, time_string_len) + 2;
if (new_width > m_button.width()) {
resize(new_width, m_button.height());
resizeSig().emit();
}
2003-08-11 14:32:39 +00:00
#else // dont have strftime so we have to set it to hour:minut
// sprintf(time_string, "%d:%d", );
#endif // HAVE_STRFTIME
}
}
2004-08-29 08:33:13 +00:00
// Just change things that affect the size
void ClockTool::updateSizing() {
2008-01-05 01:39:19 +00:00
m_button.setBorderWidth(m_theme->border().width());
2007-12-30 15:32:53 +00:00
// resizes if new timeformat
themeReconfigured();
2004-08-29 08:33:13 +00:00
}
void ClockTool::reRender() {
2007-12-30 15:32:53 +00:00
if (m_pixmap)
m_screen.imageControl().removeImage(m_pixmap);
2008-01-05 01:39:19 +00:00
if (m_theme->texture().usePixmap()) {
m_pixmap = m_screen.imageControl().renderImage(width(), height(),
2008-01-05 01:39:19 +00:00
m_theme->texture(), orientation());
m_button.setBackgroundPixmap(m_pixmap);
} else {
2003-08-11 14:32:39 +00:00
m_pixmap = 0;
2008-01-05 01:39:19 +00:00
m_button.setBackgroundColor(m_theme->texture().color());
2003-08-11 14:32:39 +00:00
}
}
2003-08-11 14:32:39 +00:00
void ClockTool::renderTheme(int alpha) {
m_button.setAlpha(alpha);
2008-01-05 01:39:19 +00:00
m_button.setJustify(m_theme->justify());
reRender();
2008-01-05 01:39:19 +00:00
m_button.setBorderWidth(m_theme->border().width());
m_button.setBorderColor(m_theme->border().color());
2003-08-11 14:32:39 +00:00
m_button.clear();
}
void ClockTool::setOrientation(FbTk::Orientation orient) {
m_button.setOrientation(orient);
ToolbarItem::setOrientation(orient);
}