/* -*- mode: C++; tab-width: 4; c-basic-offset: 4; -*- */ /* AbiWord * Copyright (C) 1998 AbiSource, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * 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., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. */ #include "ut_assert.h" #include "ut_vector.h" #include "xap_Frame.h" #include "xap_App.h" #include "ap_CocoaToolbar_ZoomCombo.h" #include "ap_Toolbar_Id.h" /*****************************************************************/ EV_Toolbar_Control * AP_CocoaToolbar_ZoomCombo::static_constructor(EV_Toolbar * pToolbar, XAP_Toolbar_Id id) { AP_CocoaToolbar_ZoomCombo * p = new AP_CocoaToolbar_ZoomCombo(pToolbar,id); return p; } AP_CocoaToolbar_ZoomCombo::AP_CocoaToolbar_ZoomCombo(EV_Toolbar * pToolbar, XAP_Toolbar_Id id) : EV_Toolbar_Control(pToolbar/*,id*/) { UT_ASSERT(id==AP_TOOLBAR_ID_ZOOM); m_nPixels = 50; // TODO: do a better calculation m_nLimit = 6; } AP_CocoaToolbar_ZoomCombo::~AP_CocoaToolbar_ZoomCombo(void) { // nothing to purge. contents are static strings } /*****************************************************************/ bool AP_CocoaToolbar_ZoomCombo::populate(void) { // clear anything that's already there m_vecContents.clear(); // populate the vector m_vecContents.addItem("200%"); m_vecContents.addItem("150%"); m_vecContents.addItem("100%"); m_vecContents.addItem("75%"); m_vecContents.addItem("50%"); m_vecContents.addItem("25%"); const XAP_StringSet * pSS = XAP_App::getApp()->getStringSet(); m_vecContents.addItem(pSS->getValue(XAP_STRING_ID_TB_Zoom_PageWidth)); m_vecContents.addItem(pSS->getValue(XAP_STRING_ID_TB_Zoom_WholePage)); m_vecContents.addItem(pSS->getValue(XAP_STRING_ID_TB_Zoom_Percent)); return true; }