本文整理汇总了C++中etl::handle::get_file_name方法的典型用法代码示例。如果您正苦于以下问题:C++ handle::get_file_name方法的具体用法?C++ handle::get_file_name怎么用?C++ handle::get_file_name使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类etl::handle
的用法示例。
在下文中一共展示了handle::get_file_name方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
void
Widget_CompSelect::new_instance(etl::handle<studio::Instance> instance)
{
if(studio::App::shutdown_in_progress)
return;
assert(instance);
etl::loose_handle<studio::Instance> loose_instance(instance);
instance->synfigapp::Instance::signal_filename_changed().connect(sigc::mem_fun(*this,&Widget_CompSelect::refresh));
instance->synfigapp::Instance::signal_filename_changed().connect(
sigc::bind<etl::loose_handle<studio::Instance> >(
sigc::mem_fun(*this,&Widget_CompSelect::set_selected_instance),
loose_instance
)
);
{
std::string name=basename(instance->get_file_name());
instances.push_back(loose_instance);
append(name);
}
}
示例2: FileSystemGroup
Instance::Instance(etl::handle<synfig::Canvas> canvas, etl::handle< synfig::FileContainerTemporary > container):
CVSInfo(canvas->get_file_name()),
canvas_(canvas),
file_system_(new FileSystemGroup(FileSystemNative::instance())),
container_(container)
{
file_system_->register_system("#", container_);
assert(canvas->is_root());
unset_selection_manager();
instance_map_[canvas]=this;
} // END of synfigapp::Instance::Instance()