2003-08-11 14:32:39 +00:00
|
|
|
// ClockTool.cc
|
2005-01-24 18:34:57 +00:00
|
|
|
// Copyright (c) 2003 - 2005 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.
|
|
|
|
|
2004-11-19 11:37:27 +00:00
|
|
|
// $Id$
|
2003-08-11 14:32:39 +00:00
|
|
|
|
|
|
|
#include "ClockTool.hh"
|
|
|
|
|
|
|
|
#include "ToolTheme.hh"
|
|
|
|
#include "Screen.hh"
|
2003-12-06 16:49:06 +00:00
|
|
|
#include "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/SimpleCommand.hh"
|
|
|
|
#include "FbTk/ImageControl.hh"
|
2003-12-04 23:02:23 +00:00
|
|
|
#include "FbTk/Menu.hh"
|
|
|
|
#include "FbTk/MenuItem.hh"
|
2004-10-10 12:00:37 +00:00
|
|
|
#include "FbTk/I18n.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
|
2003-12-19 18:26:48 +00:00
|
|
|
#include <string>
|
2005-05-12 19:58:47 +00:00
|
|
|
#include <typeinfo>
|
2003-08-11 14:32:39 +00:00
|
|
|
|
2003-12-04 23:02:23 +00:00
|
|
|
class ClockMenuItem: public FbTk::MenuItem {
|
|
|
|
public:
|
2003-12-06 16:49:06 +00:00
|
|
|
explicit ClockMenuItem::ClockMenuItem(ClockTool &tool):
|
2003-12-04 23:02:23 +00:00
|
|
|
FbTk::MenuItem(""), m_tool(tool) {
|
|
|
|
// determine 12/24 hour format
|
2004-10-10 12:00:37 +00:00
|
|
|
_FB_USES_NLS;
|
2003-12-04 23:02:23 +00:00
|
|
|
if (m_tool.timeFormat().find("%k") != std::string::npos ||
|
|
|
|
m_tool.timeFormat().find("%H") != std::string::npos ||
|
|
|
|
m_tool.timeFormat().find("%T") != std::string::npos)
|
2004-10-10 12:00:37 +00:00
|
|
|
setLabel( _FBTEXT(Toolbar, Clock24, "Clock: 24h", "set Clockmode to 24h") );
|
2003-12-04 23:02:23 +00:00
|
|
|
else
|
2004-10-10 12:00:37 +00:00
|
|
|
setLabel( _FBTEXT(Toolbar, Clock12, "Clock: 12h", "set Clockmode to 12h") );
|
2003-12-04 23:02:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void click(int button, int time) {
|
|
|
|
std::string newformat = m_tool.timeFormat();
|
|
|
|
size_t pos = newformat.find("%k");
|
|
|
|
std::string newstr;
|
|
|
|
bool clock24hour = true;
|
2004-10-10 12:00:37 +00:00
|
|
|
|
|
|
|
_FB_USES_NLS;
|
|
|
|
|
2003-12-04 23:02:23 +00:00
|
|
|
if (pos != std::string::npos)
|
|
|
|
newstr = "%l";
|
|
|
|
else if ((pos = newformat.find("%H")) != std::string::npos)
|
|
|
|
newstr = "%I";
|
|
|
|
else if ((pos = newformat.find("%T")) != std::string::npos)
|
|
|
|
newstr = "%r";
|
|
|
|
|
|
|
|
// 12 hour
|
|
|
|
if (newstr.empty()) {
|
|
|
|
clock24hour = false;
|
|
|
|
if ((pos = newformat.find("%l")) != std::string::npos)
|
|
|
|
newstr = "%k";
|
|
|
|
else if ((pos = newformat.find("%I")) != std::string::npos)
|
|
|
|
newstr = "%H";
|
|
|
|
else if ((pos = newformat.find("%r")) != std::string::npos)
|
|
|
|
newstr = "%T";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!newstr.empty()) {
|
|
|
|
|
|
|
|
newformat.replace(pos, 2, newstr);
|
|
|
|
if (!clock24hour) { // erase %P/%p (AM|PM / am|pm)
|
|
|
|
pos = newformat.find("%p");
|
|
|
|
if (pos != std::string::npos)
|
|
|
|
newformat.erase(pos, 2);
|
|
|
|
else if ((pos = newformat.find("%P")) != std::string::npos)
|
|
|
|
newformat.erase(pos, 2);
|
|
|
|
}
|
2003-12-06 16:49:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
m_tool.setTimeFormat(newformat);
|
|
|
|
|
|
|
|
if (m_tool.timeFormat().find("%k") != std::string::npos ||
|
|
|
|
m_tool.timeFormat().find("%H") != std::string::npos ||
|
|
|
|
m_tool.timeFormat().find("%T") != std::string::npos)
|
2004-10-10 12:00:37 +00:00
|
|
|
setLabel( _FBTEXT(Toolbar, Clock24, "Clock: 24h", "set Clockmode to 24h") );
|
2003-12-04 23:02:23 +00:00
|
|
|
else
|
2004-10-10 12:00:37 +00:00
|
|
|
setLabel( _FBTEXT(Toolbar, Clock12, "Clock: 12h", "set Clockmode to 12h") );
|
2003-12-04 23:02:23 +00:00
|
|
|
|
|
|
|
} // else some other strange format...so we don't do anything
|
|
|
|
FbTk::MenuItem::click(button, time);
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
ClockTool &m_tool;
|
|
|
|
};
|
|
|
|
|
2003-12-19 18:26:48 +00:00
|
|
|
class EditClockFormatCmd: public FbTk::Command {
|
|
|
|
public:
|
|
|
|
void execute() {
|
|
|
|
BScreen *screen = Fluxbox::instance()->mouseScreen();
|
|
|
|
if (screen == 0)
|
|
|
|
return;
|
|
|
|
std::string resourcename = screen->name() + ".strftimeFormat";
|
|
|
|
|
|
|
|
CommandDialog *dialog = new CommandDialog(*screen, "Edit Clock Format",
|
|
|
|
"SetResourceValue " + resourcename + " ");
|
|
|
|
FbTk::RefCount<FbTk::Command> cmd(CommandParser::instance().parseLine("reconfigure"));
|
|
|
|
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,
|
2003-12-04 23:02:23 +00:00
|
|
|
ToolTheme &theme, BScreen &screen, FbTk::Menu &menu):
|
2003-08-11 14:32:39 +00:00
|
|
|
ToolbarItem(ToolbarItem::FIXED),
|
|
|
|
m_button(parent, theme.font(), ""),
|
|
|
|
m_theme(theme),
|
|
|
|
m_screen(screen),
|
|
|
|
m_pixmap(0),
|
|
|
|
m_timeformat(screen.resourceManager(), std::string("%k:%M"),
|
|
|
|
screen.name() + ".strftimeFormat", screen.altName() + ".StrftimeFormat") {
|
2003-08-11 20:29:30 +00:00
|
|
|
// attach signals
|
2003-08-11 14:32:39 +00:00
|
|
|
theme.reconfigSig().attach(this);
|
|
|
|
|
2004-10-10 12:00:37 +00:00
|
|
|
_FB_USES_NLS;
|
|
|
|
|
2003-08-11 14:32:39 +00:00
|
|
|
// setup timer to update the graphics each second
|
|
|
|
timeval delay;
|
|
|
|
delay.tv_sec = 1;
|
|
|
|
delay.tv_usec = 0;
|
|
|
|
m_timer.setTimeout(delay);
|
|
|
|
FbTk::RefCount<FbTk::Command> update_graphic(new FbTk::SimpleCommand<ClockTool>(*this,
|
|
|
|
&ClockTool::updateTime));
|
|
|
|
m_timer.setCommand(update_graphic);
|
|
|
|
m_timer.start();
|
|
|
|
|
2003-08-11 20:29:30 +00:00
|
|
|
m_button.setGC(m_theme.textGC());
|
2003-12-19 18:26:48 +00:00
|
|
|
|
|
|
|
// setup menu
|
2003-12-06 16:49:06 +00:00
|
|
|
FbTk::RefCount<FbTk::Command> saverc(CommandParser::instance().parseLine("saverc"));
|
|
|
|
FbTk::MenuItem *item = new ClockMenuItem(*this);
|
|
|
|
item->setCommand(saverc);
|
|
|
|
menu.insert(item);
|
2003-12-19 18:26:48 +00:00
|
|
|
FbTk::RefCount<FbTk::Command> editformat_cmd(new EditClockFormatCmd());
|
2004-10-10 12:00:37 +00:00
|
|
|
menu.insert(_FBTEXT(Toolbar, ClockEditFormat, "Edit Clock Format", "edit Clock Format") , editformat_cmd);
|
2003-12-19 18:26:48 +00:00
|
|
|
|
|
|
|
|
2003-08-11 14:32:39 +00:00
|
|
|
update(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
2004-09-12 14:56:20 +00:00
|
|
|
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);
|
2004-09-12 14:56:20 +00:00
|
|
|
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;
|
|
|
|
update(0);
|
|
|
|
}
|
|
|
|
|
2003-08-11 14:32:39 +00:00
|
|
|
void ClockTool::update(FbTk::Subject *subj) {
|
|
|
|
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
|
2004-12-07 15:55:12 +00:00
|
|
|
std::string text(m_button.text().size() + 2, '0');
|
2003-08-13 10:08:18 +00:00
|
|
|
|
2004-08-25 17:16:40 +00:00
|
|
|
int new_width = m_theme.font().textWidth(text.c_str(), text.size());
|
|
|
|
if (new_width != m_button.width()) {
|
2004-12-10 01:58:09 +00:00
|
|
|
resize(new_width, m_button.height());
|
2004-08-25 17:16:40 +00:00
|
|
|
resizeSig().notify();
|
|
|
|
}
|
2005-04-27 15:15:36 +00:00
|
|
|
|
|
|
|
if (subj != 0 && typeid(*subj) == typeid(ToolTheme))
|
|
|
|
renderTheme(m_button.alpha());
|
|
|
|
|
2003-08-13 10:08:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int ClockTool::borderWidth() const {
|
|
|
|
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() {
|
|
|
|
|
|
|
|
// update clock
|
|
|
|
time_t the_time = time(0);
|
|
|
|
|
|
|
|
if (the_time != -1) {
|
|
|
|
char time_string[255];
|
|
|
|
struct tm *time_type = localtime(&the_time);
|
|
|
|
if (time_type == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
#ifdef HAVE_STRFTIME
|
2004-06-16 15:38:19 +00:00
|
|
|
if (!strftime(time_string, 255, m_timeformat->c_str(), time_type) || m_button.text() == time_string)
|
2003-08-11 14:32:39 +00:00
|
|
|
return;
|
|
|
|
m_button.setText(time_string);
|
|
|
|
#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() {
|
|
|
|
m_button.setBorderWidth(m_theme.border().width());
|
2004-12-10 01:58:09 +00:00
|
|
|
// resizes if new timeformat
|
|
|
|
update(0);
|
2004-08-29 08:33:13 +00:00
|
|
|
}
|
|
|
|
|
2004-09-12 14:56:20 +00:00
|
|
|
void ClockTool::reRender() {
|
2005-04-27 15:15:36 +00:00
|
|
|
if (m_pixmap)
|
|
|
|
m_screen.imageControl().removeImage(m_pixmap);
|
|
|
|
|
2004-09-12 14:56:20 +00:00
|
|
|
if (m_theme.texture().usePixmap()) {
|
|
|
|
m_pixmap = m_screen.imageControl().renderImage(width(), height(),
|
|
|
|
m_theme.texture());
|
|
|
|
m_button.setBackgroundPixmap(m_pixmap);
|
2005-04-27 15:15:36 +00:00
|
|
|
} else {
|
2003-08-11 14:32:39 +00:00
|
|
|
m_pixmap = 0;
|
|
|
|
m_button.setBackgroundColor(m_theme.texture().color());
|
|
|
|
}
|
2005-04-27 15:15:36 +00:00
|
|
|
}
|
2003-08-11 14:32:39 +00:00
|
|
|
|
2005-04-27 15:15:36 +00:00
|
|
|
|
|
|
|
void ClockTool::renderTheme(unsigned char alpha) {
|
|
|
|
m_button.setAlpha(alpha);
|
2003-08-11 20:29:30 +00:00
|
|
|
m_button.setJustify(m_theme.justify());
|
2005-04-27 15:15:36 +00:00
|
|
|
|
|
|
|
reRender();
|
|
|
|
|
2003-08-13 10:08:18 +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();
|
|
|
|
}
|