root/src/add-ons/translators/pcx/ConfigView.cpp
/*
 * Copyright 2008, Jérôme Duval, korli@users.berlios.de. All rights reserved.
 * Copyright 2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
 * Distributed under the terms of the MIT License.
 */


#include "ConfigView.h"
#include "PCXTranslator.h"

#include <Catalog.h>
#include <CheckBox.h>
#include <LayoutBuilder.h>
#include <StringView.h>

#include <stdio.h>
#include <string.h>


#undef B_TRANSLATION_CONTEXT
#define B_TRANSLATION_CONTEXT "ConfigView"


ConfigView::ConfigView(const BRect &frame, uint32 resize, uint32 flags)
        : BView(frame, B_TRANSLATE("PCXTranslator Settings"), resize, flags)
{
        SetViewUIColor(B_PANEL_BACKGROUND_COLOR);

        BStringView *titleView = new BStringView("title",
                B_TRANSLATE("PCX image translator"));
        titleView->SetFont(be_bold_font);

        char version[256];
        sprintf(version, B_TRANSLATE("Version %d.%d.%d, %s"),
                int(B_TRANSLATION_MAJOR_VERSION(PCX_TRANSLATOR_VERSION)),
                int(B_TRANSLATION_MINOR_VERSION(PCX_TRANSLATOR_VERSION)),
                int(B_TRANSLATION_REVISION_VERSION(PCX_TRANSLATOR_VERSION)),
                __DATE__);
        BStringView *versionView = new BStringView("version", version);
        BStringView *copyrightView = new BStringView("copyright", B_UTF8_COPYRIGHT "2008 Haiku Inc.");

        BLayoutBuilder::Group<>(this, B_VERTICAL, 0)
                .SetInsets(B_USE_DEFAULT_SPACING)
                .Add(titleView)
                .Add(versionView)
                .Add(copyrightView)
                .AddGlue();
}


ConfigView::~ConfigView()
{
}