Giter VIP home page Giter VIP logo

imgui-notify's Introduction

Hi ๐Ÿ‘‹, I'm Deathtroke

A passionate developer from France

angular c cplusplus csharp docker dotnet photoshop php postman typescript

patrickcjk

imgui-notify's People

Contributors

hellohackynow avatar mixaill avatar patrickcjk avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

imgui-notify's Issues

sprintf_s in code

line about 260-270

char window_name[50];
sprintf_s(window_name, "##TOAST%d", i);

I'd suggest to replace it with ImFormat cuz not everyone has sprintf_s function

linux support ?

my lib crash when i port this library to linux, anyway to fix ?

Runtime error

I get the following error when I try to call notify::init() after ImGui_ImplDX12_Init()

image

I included all the files correctly and am doing exactly as the instructions stated. It seems its failing to initialize the font... What is going on here?

Icons aren't working

Hey, I followed your instructions and everything works fine except the Icons.
I tried it with different fonts, but instead of an Icon it shows a colored Question mark "?".
The font applys tho as the text changes the font style based on the Font that I use.

I use the following code after the Init:

writefont = io.Fonts->AddFontFromMemoryCompressedTTF(Font_Font_data, Font_Font_size, 16.f);
ImFontConfig font_cfg;
font_cfg.FontDataOwnedByAtlas = false;
io.Fonts->AddFontFromMemoryCompressedTTF(Font_Font_data, Font_Font_size, 16.f, &font_cfg);
ImGui::MergeIconsWithLatestFont(16.f, false);

To use the font I do:

ImGui::PushFont(writefont); //apply font
ImGui::PushStyleVar(ImGuiStyleVar_WindowRounding, 5.f);
ImGui::PushStyleColor(ImGuiCol_WindowBg, ImVec4(43.f / 255.f, 43.f / 255.f, 43.f / 255.f, 255.f / 255.f));
ImGui::RenderNotifications();
ImGui::PopStyleVar(1);
ImGui::PopStyleColor(1);
ImGui::PopFont();

error: expected expression

NOTIFY_INLINE auto set_title(const char* format, ...) -> void { NOTIFY_FORMAT(this->set_title, format); }

	NOTIFY_INLINE auto set_content(const char* format, ...) -> void { NOTIFY_FORMAT(this->set_content, format); }

	NOTIFY_INLINE auto set_type(const ImGuiToastType& type) -> void { IM_ASSERT(type < ImGuiToastType_COUNT); this->type = type; };

imgui_notify.h:81:66: error: expected expression

this NOTIFY_FORMAT

NOTIFY_FORMAT doesn't compile

i.e.

imgui_notify.h:205:83: error: expected expression
    ImGuiToast(ImGuiToastType type, const char* format, ...) : ImGuiToast(type) { NOTIFY_FORMAT(this->set_content, format); }

imgui_notify.h:23:120: note: expanded from macro 'NOTIFY_FORMAT'
#define NOTIFY_FORMAT(fn, format, ...)  if (format) { va_list args; va_start(args, format); fn(format, args, __VA_ARGS__); va_end(args); }

That's what my clangd 14.0.0 says
image

Clangd config: -Wno-unused-variable,-Wno-infinite-recursion,-Werror=implicit-function-declaration,-Wshadow,-Wno-shadow-field-in-constructor-modified,-Wno-shadow-ivar,-Wuninitialized,-Wunused-label,-Wunused-lambda-capture, ,--target=aarch64

Do you know if it requires C++17?

Hey @patrickcjk , thanks for sharing this.

I am trying to use it in an openFrameworks project without success...
I am on VS 2017, and OF is bundled with C++ 11/14.

After getting these errors:

Severity	Code	Description	Project	File	Line	Suppression State
Error	C7525	inline variables require at least '/std:c++17' (compiling source file src\main.cpp)	1_7_Notify	f:\openframeworks\addons\ofxsurfingimgui\1_widgets\1_7_notify\src\imgui_notify.h	220	

I "forced" the VS project to C++17. But I am getting OF related errors like:

Severity	Code	Description	Project	File	Line	Suppression State
Error	C2757	'filesystem': a symbol with this name already exists and therefore this name cannot be used as a namespace name (compiling source file src\main.cpp)	1_7_Notify	c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\fstream	24	

Any idea?

https://github.com/moebiussurfing/ofxSurfingImGui/tree/master/1_Widgets/1_7_Notify/src

Do you have the TTF version of the tahoma.h?

Hello @patrickcjk ,
thanks for that repo, it looks cute.

I have the code almost working in an openFrameworks environment, but I am having problems to "unlock" draw the icons.

On the ImGui add-on for oF,
it's implemented only the AddFontFromFileTTF method...
not the one you used 'AddFontFromMemoryTTF'.

I tried to make it work, but no success. Fonts look broke as white squares and I am getting exceptions.

Do you have the TTF version for the tahoma font?

Thanks

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.