Kaydet (Commit) 87e21946 authored tarafından Olivier Hallot's avatar Olivier Hallot Kaydeden (comit) Caolán McNamara

Convert text animations tab page to widget UI

(src file will be deleted in a forthcomming patch)

Change-Id: Iabb77ae70e536afe0ba24b8922be98ea87441f3f
Reviewed-on: https://gerrit.libreoffice.org/5485Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst b96c5920
......@@ -108,6 +108,7 @@ $(eval $(call gb_UIConfig_add_uifiles,cui,\
cui/uiconfig/ui/storedwebconnectiondialog \
cui/uiconfig/ui/swpossizepage \
cui/uiconfig/ui/textattrtabpage \
cui/uiconfig/ui/textanimtabpage \
cui/uiconfig/ui/textflowpage \
cui/uiconfig/ui/thesaurus \
cui/uiconfig/ui/transparencytabpage \
......
......@@ -37,30 +37,26 @@ class SdrView;
class SvxTextAnimationPage : public SfxTabPage
{
private:
FixedLine aFlEffect;
FixedText aFtEffects;
ListBox aLbEffect;
FixedText aFtDirection;
ImageButton aBtnUp;
ImageButton aBtnLeft;
ImageButton aBtnRight;
ImageButton aBtnDown;
FixedLine aFlProperties;
TriStateBox aTsbStartInside;
TriStateBox aTsbStopInside;
FixedText aFtCount;
TriStateBox aTsbEndless;
NumericField aNumFldCount;
FixedText aFtAmount;
TriStateBox aTsbPixel;
MetricField aMtrFldAmount;
FixedText aFtDelay;
TriStateBox aTsbAuto;
MetricField aMtrFldDelay;
ListBox* m_pLbEffect;
VclBox* m_pBoxDirection;
PushButton* m_pBtnUp;
PushButton* m_pBtnLeft;
PushButton* m_pBtnRight;
PushButton* m_pBtnDown;
VclFrame* m_pFlProperties;
TriStateBox* m_pTsbStartInside;
TriStateBox* m_pTsbStopInside;
VclBox* m_pBoxCount;
TriStateBox* m_pTsbEndless;
NumericField* m_pNumFldCount;
TriStateBox* m_pTsbPixel;
MetricField* m_pMtrFldAmount;
TriStateBox* m_pTsbAuto;
MetricField* m_pMtrFldDelay;
const SfxItemSet& rOutAttrs;
SdrTextAniKind eAniKind;
......
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#define LB_EFFECT 1
#define CTL_EFFECT 1
#define TSB_START_INSIDE 1
#define TSB_STOP_INSIDE 2
#define FL_EFFECT 1
#define FT_EFFECTS 1
#define FT_DIRECTION 2
#define FL_PROPERTIES 2
#define FT_COUNT 3
#define TSB_ENDLESS 3
#define NUM_FLD_COUNT 1
#define FT_AMOUNT 4
#define MTR_FLD_AMOUNT 1
#define FT_DELAY 5
#define MTR_FLD_DELAY 2
#define TSB_PIXEL 4
#define TSB_AUTO 5
#define BTN_UP 1
#define BTN_LEFT 2
#define BTN_RIGHT 3
#define BTN_DOWN 4
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment