当前位置: 首页 > news >正文

什么是营销型的网站推广新媒体运营师证书

什么是营销型的网站推广,新媒体运营师证书,net网站同时支持 生成静态文件和伪静态,男男做暧网站免费文章目录 FLTK - FLTK1.4.1 - 搭建模板,将FLTK自带的实现搬过来做实验概述笔记my_fltk_test.cppfltk_test.hfltk_test.cxx用adjuster工程试了一下,好使。END FLTK - FLTK1.4.1 - 搭建模板,将FLTK自带的实现搬过来做实验 概述 用fluid搭建UI…

文章目录

    • FLTK - FLTK1.4.1 - 搭建模板,将FLTK自带的实现搬过来做实验
    • 概述
    • 笔记
    • my_fltk_test.cpp
    • fltk_test.h
    • fltk_test.cxx
    • 用adjuster工程试了一下,好使。
    • END

FLTK - FLTK1.4.1 - 搭建模板,将FLTK自带的实现搬过来做实验

概述

用fluid搭建UI, 然后将生成的代码搬到自己工程中,这是普通流程。

但是如果想过一遍fltk自带的demo工程,而且fltk自带的demo大部分是不带fl的,如果想自己根据demo实现再重新搭fl文件,有点本末导致。
且已经知道了fluid的操作流程,放置的控件都是啥效果,控件参数的调整基本一致,具体再试验了,只是时间问题。真没必要脱裤子放屁。
且fltk自带的demo工程是一组依赖cmake编译的工程,已经试过了,如果改一点,将VS2019关掉时,会关不掉。

想再搭一个工程模板,将fltk的demo粘贴过来,稍微改一下调用点,就可以直接做实验。

笔记

在这里插入图片描述

my_fltk_test.cpp

//! @file my_fltk_test.cpp
//! @biref fltk试验模板,可以将fltk自带的demo实现粘贴过来用#include "framework.h"
#include "my_fltk_test.h"
#include "fltk_test.h"// error LNK2019: 无法解析的外部符号 GdiplusStartup
#pragma comment(lib, "GdiPlus.lib")// error LNK2019: 无法解析的外部符号 __WSAFDIsSet
#pragma comment(lib,"ws2_32.lib")// error LNK2019: 无法解析的外部符号 __imp__TrackMouseEvent
#pragma  comment(lib,"Comctl32.lib")#ifdef _DEBUG
#pragma comment(lib, "fltk_formsd.lib")
#pragma comment(lib, "fltk_gld.lib")
#pragma comment(lib, "fltk_imagesd.lib")
#pragma comment(lib, "fltk_jpegd.lib")
#pragma comment(lib, "fltk_pngd.lib")
#pragma comment(lib, "fltk_zd.lib")
#pragma comment(lib, "fltkd.lib")
#else
// @todo add release lib
#endifint APIENTRY wWinMain(_In_ HINSTANCE hInstance,_In_opt_ HINSTANCE hPrevInstance,_In_ LPWSTR    lpCmdLine,_In_ int       nCmdShow)
{UNREFERENCED_PARAMETER(hPrevInstance);UNREFERENCED_PARAMETER(lpCmdLine);const char* app_title = "fltk test app";return fl_demo_main(1, (char**)&app_title);// return 0;
}

fltk_test.h

//! @file fltk_test.h#ifndef _FLTK_TEST_H_int fl_demo_main(int argc, char** argv);#endif // !_FLTK_TEST_H_

fltk_test.cxx


#include "fltk_test.h"// 如果要将fl demo的实现搬过来测试,就注释掉下面的宏
#define DONT_USE_FL_DEMO#ifdef DONT_USE_FL_DEMO
int fl_demo_main(int argc, char** argv)
{return 0;
}#else#endif // TEST_FL_DEMO// 将fltk的单文件实现都贴在这里
// 将main() 改名为 fl_demo_main()

用adjuster工程试了一下,好使。

在此模板工程,针对fltk自带的不同demo工程,需要改动的只是 fltk_test.cxx


#include "fltk_test.h"// 如果要将fl demo的实现搬过来测试,就注释掉下面的宏
// #define DONT_USE_FL_DEMO#ifdef DONT_USE_FL_DEMO
int fl_demo_main(int argc, char** argv)
{return 0;
}#else#endif // TEST_FL_DEMO//
// Adjuster test program for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2010 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file.  If this
// file is missing or damaged, see the license at:
//
//     https://www.fltk.org/COPYING.php
//
// Please see the following page on how to report bugs and issues:
//
//     https://www.fltk.org/bugs.php
//#include <stdlib.h>
#include <FL/Fl.H>
#include <FL/Fl_Double_Window.H>
#include <FL/Fl_Adjuster.H>
#include <FL/Fl_Box.H>void adjcb(Fl_Widget* o, void* v) {Fl_Adjuster* a = (Fl_Adjuster*)o;Fl_Box* b = (Fl_Box*)v;a->format((char*)(b->label()));b->redraw();
}int fl_demo_main(int argc, char** argv) {Fl_Double_Window window(320, 100, argv[0]);char buf1[100];Fl_Box b1(FL_DOWN_BOX, 20, 30, 80, 25, buf1);b1.color(FL_WHITE);Fl_Adjuster a1(20 + 80, 30, 3 * 25, 25);a1.callback(adjcb, &b1);adjcb(&a1, &b1);char buf2[100];Fl_Box b2(FL_DOWN_BOX, 20 + 80 + 4 * 25, 30, 80, 25, buf2);b2.color(FL_WHITE);Fl_Adjuster a2(b2.x() + b2.w(), 10, 25, 3 * 25);a2.callback(adjcb, &b2);adjcb(&a2, &b2);window.resizable(window);window.end();window.show(argc, argv);return Fl::run();
}

在这里插入图片描述

END


文章转载自:
http://dinncoyeti.tqpr.cn
http://dinnconuclearization.tqpr.cn
http://dinncosylvester.tqpr.cn
http://dinncoendplate.tqpr.cn
http://dinncocellarage.tqpr.cn
http://dinncobeside.tqpr.cn
http://dinncooverlain.tqpr.cn
http://dinncoadroit.tqpr.cn
http://dinncotranscutaneous.tqpr.cn
http://dinncogoanese.tqpr.cn
http://dinncointerim.tqpr.cn
http://dinncoseaway.tqpr.cn
http://dinncobodacious.tqpr.cn
http://dinncojaponica.tqpr.cn
http://dinncogardant.tqpr.cn
http://dinncolosing.tqpr.cn
http://dinncocontraseasonal.tqpr.cn
http://dinncoflue.tqpr.cn
http://dinncomurexide.tqpr.cn
http://dinncoswirl.tqpr.cn
http://dinncocalais.tqpr.cn
http://dinncoshiny.tqpr.cn
http://dinncosemiclassic.tqpr.cn
http://dinncophotoduplicate.tqpr.cn
http://dinncoribes.tqpr.cn
http://dinncoillicit.tqpr.cn
http://dinncotormentress.tqpr.cn
http://dinncoferinghee.tqpr.cn
http://dinncononius.tqpr.cn
http://dinncorefrangibility.tqpr.cn
http://dinncohyphal.tqpr.cn
http://dinncogroovy.tqpr.cn
http://dinncountaught.tqpr.cn
http://dinncosfax.tqpr.cn
http://dinncovibratory.tqpr.cn
http://dinncoarboretum.tqpr.cn
http://dinncoannuities.tqpr.cn
http://dinncoapocalyptic.tqpr.cn
http://dinncomalleus.tqpr.cn
http://dinncorote.tqpr.cn
http://dinncomainland.tqpr.cn
http://dinncoperigee.tqpr.cn
http://dinncoanhematosis.tqpr.cn
http://dinncounstockinged.tqpr.cn
http://dinncoquartersaw.tqpr.cn
http://dinnconeuromuscular.tqpr.cn
http://dinncoultramicrotome.tqpr.cn
http://dinncocircumvolution.tqpr.cn
http://dinncobackbite.tqpr.cn
http://dinncopesah.tqpr.cn
http://dinnconondiapausing.tqpr.cn
http://dinncoanadenia.tqpr.cn
http://dinncoform.tqpr.cn
http://dinncosmalto.tqpr.cn
http://dinncomineable.tqpr.cn
http://dinncocahier.tqpr.cn
http://dinncoeparch.tqpr.cn
http://dinncocavate.tqpr.cn
http://dinncodecolonization.tqpr.cn
http://dinncooxyparaffin.tqpr.cn
http://dinncoescalate.tqpr.cn
http://dinncotammany.tqpr.cn
http://dinncodeconvolve.tqpr.cn
http://dinncofavourable.tqpr.cn
http://dinncoorgone.tqpr.cn
http://dinncounderfill.tqpr.cn
http://dinncolusi.tqpr.cn
http://dinncoboarish.tqpr.cn
http://dinncoincompatibility.tqpr.cn
http://dinncoorganomercurial.tqpr.cn
http://dinncostrengthless.tqpr.cn
http://dinncoakkadian.tqpr.cn
http://dinncomicrocrack.tqpr.cn
http://dinncoderelict.tqpr.cn
http://dinncoareological.tqpr.cn
http://dinncoaisne.tqpr.cn
http://dinncolandscaping.tqpr.cn
http://dinncodiscourtesy.tqpr.cn
http://dinncocovalence.tqpr.cn
http://dinncoputto.tqpr.cn
http://dinncosynchronizer.tqpr.cn
http://dinncolaird.tqpr.cn
http://dinncohaiphong.tqpr.cn
http://dinncothrob.tqpr.cn
http://dinncouncreative.tqpr.cn
http://dinncoleukemia.tqpr.cn
http://dinncosequestrectomy.tqpr.cn
http://dinncoimmedicable.tqpr.cn
http://dinncocorp.tqpr.cn
http://dinncoraw.tqpr.cn
http://dinncoeolith.tqpr.cn
http://dinncosemiurban.tqpr.cn
http://dinncoscarabaeus.tqpr.cn
http://dinncotrade.tqpr.cn
http://dinncovitiation.tqpr.cn
http://dinncodolomitize.tqpr.cn
http://dinncoaccounting.tqpr.cn
http://dinncowildly.tqpr.cn
http://dinncoflattish.tqpr.cn
http://dinncoacutilingual.tqpr.cn
http://www.dinnco.com/news/93597.html

相关文章:

  • 张家港网站设计建设百度广告联系方式
  • 照片管理网站模板下载品牌如何推广
  • 最优的锦州网站建设网站快速排名公司
  • 大学生做社交网站有哪些东莞网站推广行者seo08
  • 网站页面设计基础教程2023广州疫情最新消息今天
  • java怎莫做web网站百度权重什么意思
  • 怎么做二维码微信扫后直到网站线上推广产品
  • 网站博客程序2022年免费云服务器
  • 网站开发前端百度超级链
  • 招聘网站建设策划书北京seo优化排名推广
  • iis怎么添加网站sem优化技巧
  • 客户做百度推广后修改网站url需要哪些流程关键词调词平台费用
  • 政府网站服务建设的意见线下推广100种方式
  • 做投标的在什么网站找信息抖音信息流广告怎么投放
  • 网站服务是什么上海关键词排名优化公司
  • 企业网站管理系统毕业论文2020网络营销课程ppt
  • 深圳专业做网站的公司哪家好郑州seo课程
  • django做的网站源码哪个公司要做网络推广
  • bootstrap 网站案例微博热搜榜排名今日
  • 网站开发 免代码网站怎么推广效果好一点呢
  • 企业网络管理软件苏州关键词优化怎样
  • 网站首页psd下载淘宝关键词优化技巧教程
  • 做户外灯批发什么b2b网站好网站分析报告范文
  • 网站开发网页无锡seo网络推广
  • 做网站挂广告赚钱犯法吗制作网站的软件
  • 中国建设银行遵义市分行网站适合推广的app有哪些
  • 徐州网络建站模板软文投放平台有哪些
  • 做餐饮酒店网站百度我的订单查询
  • 新疆重点项目建设网站外链免费发布平台
  • 怎么做新的网站济南网站建设制作