2012-03-22 22:22:59 +01:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2019-04-05 02:53:29 +02:00
|
|
|
// apps/graphics/nxwidgets/UnitTests/CLabel/clabel_main.cxx
|
2012-03-22 22:22:59 +01:00
|
|
|
//
|
2022-03-09 16:21:08 +01:00
|
|
|
// 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
|
2012-03-22 22:22:59 +01:00
|
|
|
//
|
2022-03-09 16:21:08 +01:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2012-03-22 22:22:59 +01:00
|
|
|
//
|
2022-03-09 16:21:08 +01:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
// License for the specific language governing permissions and limitations
|
|
|
|
// under the License.
|
2012-03-22 22:22:59 +01:00
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Included Files
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <nuttx/init.h>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
#include <nuttx/nx/nx.h>
|
|
|
|
|
2019-04-05 02:53:29 +02:00
|
|
|
#include "graphics/nxwidgets/clabeltest.hxx"
|
2012-03-22 22:22:59 +01:00
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Definitions
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Private Classes
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Private Data
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
static const char g_hello[] = "Hello, World!";
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Public Function Prototypes
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Suppress name-mangling
|
|
|
|
|
2019-10-06 14:14:39 +02:00
|
|
|
extern "C" int main(int argc, char *argv[]);
|
2012-03-22 22:22:59 +01:00
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Public Functions
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2012-09-17 20:43:00 +02:00
|
|
|
// nxheaders_main
|
2012-03-22 22:22:59 +01:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2019-10-06 14:14:39 +02:00
|
|
|
int main(int argc, char *argv[])
|
2012-03-22 22:22:59 +01:00
|
|
|
{
|
|
|
|
// Create an instance of the font test
|
|
|
|
|
2012-09-14 17:23:54 +02:00
|
|
|
printf("clabel_main: Create CLabelTest instance\n");
|
2012-03-22 22:22:59 +01:00
|
|
|
CLabelTest *test = new CLabelTest();
|
|
|
|
|
|
|
|
// Connect the NX server
|
|
|
|
|
2012-09-14 17:23:54 +02:00
|
|
|
printf("clabel_main: Connect the CLabelTest instance to the NX server\n");
|
2012-03-22 22:22:59 +01:00
|
|
|
if (!test->connect())
|
|
|
|
{
|
2012-09-14 17:23:54 +02:00
|
|
|
printf("clabel_main: Failed to connect the CLabelTest instance to the NX server\n");
|
2012-03-22 22:22:59 +01:00
|
|
|
delete test;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a window to draw into
|
|
|
|
|
2012-09-14 17:23:54 +02:00
|
|
|
printf("clabel_main: Create a Window\n");
|
2012-03-22 22:22:59 +01:00
|
|
|
if (!test->createWindow())
|
|
|
|
{
|
2012-09-14 17:23:54 +02:00
|
|
|
printf("clabel_main: Failed to create a window\n");
|
2012-03-22 22:22:59 +01:00
|
|
|
delete test;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a CLabel instance
|
|
|
|
|
|
|
|
CLabel *label = test->createLabel(g_hello);
|
|
|
|
if (!label)
|
|
|
|
{
|
2012-09-14 17:23:54 +02:00
|
|
|
printf("clabel_main: Failed to create a label\n");
|
2012-03-22 22:22:59 +01:00
|
|
|
delete test;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Show the label
|
|
|
|
|
|
|
|
test->showLabel(label);
|
|
|
|
sleep(5);
|
|
|
|
|
|
|
|
// Clean up and exit
|
|
|
|
|
2012-09-14 17:23:54 +02:00
|
|
|
printf("clabel_main: Clean-up and exit\n");
|
2012-03-22 22:22:59 +01:00
|
|
|
delete label;
|
|
|
|
delete test;
|
|
|
|
return 0;
|
|
|
|
}
|