Notifications UI Popup using Java Swing - GlassPane Popup

Sdílet
Vložit
  • čas přidán 12. 01. 2023
  • Java Custom Notifications Popup
    This video I will show how to custom notifications UI popup by using java swing. And I build this notification with glasspane popup.
    Related Video :
    ► GlassPane Popup Message : • Responsive Message Cus...
    ► Image Circle Avatar : • Java Swing - Image Cir...
    ► JScrollBar Custom : • Java Swing - Custom JS...
    GlassPane Popup Playlist :
    ► GlassPane Popup Sample : • Java Swing - Glasspane...
    More Tutorial :
    ► Animation Tutorial : • java animation tutorial
    ► Floating Action Button : • Floating Action Button...
    ► Custom JTable Cell : • JTable Custom Cell But...
    ► Fancy Border Radius : • Fancy Border Radius an...
    🙏🙏🙏 Support me by subscribe 🙏🙏🙏
    ► Subscribe now : czcams.com/users/HelloWorld-...
    ► Any question comment below
    ► Source code : github.com/DJ-Raven/glasspane...
    ► For support me join now
    / @laingraven

Komentáře • 35

  • @sumanshah5750
    @sumanshah5750 Před rokem +1

    Great work ❤️👍🏻💕

  • @incode4527
    @incode4527 Před rokem +1

    good job

  • @nikoovelar2068
    @nikoovelar2068 Před rokem +3

    It would be nice to make a kind of "Framework" for java swing, with an automatic generator of crud, login, notification, email sender, roles and privileges, etc. I can help in case you were wondering.
    Sorry for the English of the translator

  • @gersonsoccarobuis3910
    @gersonsoccarobuis3910 Před rokem +1

    Muy bueno.

  • @raz417
    @raz417 Před rokem +1

    very cool tutorial

  • @coffeetime8662
    @coffeetime8662 Před rokem

    Very cool tutorial as always, really helpful! I also like to ask if you know how to save the state of the program you're making, like the data you've added to the program and etc?

  • @antoniofarfan265
    @antoniofarfan265 Před rokem +1

    ♥️

  • @mohammedak6689
    @mohammedak6689 Před rokem +1

    💯👍👍👍👍

  • @herdian2165
    @herdian2165 Před rokem +1

    💯💯💯💯💯💯

  • @SaugatShahiThakuri
    @SaugatShahiThakuri Před 6 měsíci

    How to wrap text and make it auto resizable according to the text size

  • @peacock6703
    @peacock6703 Před rokem +1

    Can you do a tutorial of Custom material theme Toolbar and Meny bar. Thanks

  • @geszergumapac7769
    @geszergumapac7769 Před rokem +1

    bro please make a video on How to Wrap JTable Header

  • @dazzlepelobello
    @dazzlepelobello Před 6 měsíci

    thank you so much, you help me a lot... may i ask on how to add number features on the right side of the icon, on how many notification inside the notificationpanel.

    • @LaingRaven
      @LaingRaven  Před 6 měsíci

      Use This : czcams.com/video/6szjZlHVU7k/video.html

  • @jadizadi7600
    @jadizadi7600 Před 23 dny

    how to do the same or similar in JavaFX please. or at least what can i search to have similar. i tried searching pop up notifications messages but all i get is the alerts and notifications of errors and warnings. i only found your video about what i want but it's not in JavaFX

  • @dharmatejamyneni4879
    @dharmatejamyneni4879 Před 4 měsíci

    Where can i see the code bro? your github link showing different code?? can you give me this notification + popup code?

  • @M-UmarDraz
    @M-UmarDraz Před rokem

    i need glasspane lib

  • @sskdevelopers5209
    @sskdevelopers5209 Před rokem

    help me create a custom document viewer

  • @TuanNguyen-cx2pf
    @TuanNguyen-cx2pf Před 3 měsíci

    Is it possible to add GlassPane to JPanel instead of JFrame?

  • @nancy-vu4bs
    @nancy-vu4bs Před 4 měsíci

    Can you share this project , its not the same as the link. Thanks.

    • @LaingRaven
      @LaingRaven  Před 4 měsíci

      This notification code has removed, because method getLayoutCallBack has removed in version 2, check this : github.com/DJ-Raven/glasspane-popup/releases/tag/v2.0.0
      But you can use the forks RP from old version here : github.com/manoelvitorsilvasantos/glasspane-popup

  • @rikeshkarmacharya3767

    where can i download glasspanepopup library?

    • @LaingRaven
      @LaingRaven  Před rokem

      Check link in description video. library in this project

  • @Lazaruscutee
    @Lazaruscutee Před 5 měsíci

    Why does the glasspane won't work on mine? Do i need to install something for it to work?

    • @LaingRaven
      @LaingRaven  Před 5 měsíci

      Any error messages?

    • @Lazaruscutee
      @Lazaruscutee Před 5 měsíci

      ​@@LaingRavendo you have a link for modern scrollbar ui that you use?

  • @hamit291
    @hamit291 Před 8 měsíci

    hi bro , in github another source code

    • @hamit291
      @hamit291 Před 8 měsíci

      The method getLayoutCallback(Component) of type new DefaultOption(){} must override or implement a supertype method ?

    • @LaingRaven
      @LaingRaven  Před 8 měsíci

      This method has removed so it's not work and not used with this library for new version
      You can check this : github.com/DJ-Raven/glasspane-popup/releases/tag/v2.0.0

    • @hamit291
      @hamit291 Před 8 měsíci

      thanks a lot @@LaingRaven

  • @SaugatShahiThakuri
    @SaugatShahiThakuri Před 6 měsíci

    private void button1ActionPerformed(java.awt.event.ActionEvent evt) {
    GlassPanePopup.showPopup(new Notification(), new DefaultOption() {
    @Override
    public float opacity() {
    return 0.04f;
    }
    @Override //It's not working
    public LayoutCallback getLayoutCallBack(Component parent) {
    return new DefaultLayoutCallBack(parent) {
    @Override
    public void correctBounds(ComponentWrapper cw) {
    if (parent.isVisible()) {
    Point p1 = parent.getLocationOnScreen();
    Point b1 = jButton1.getLocationOnScreen();
    int x = b1.x - p1.x;
    int y = b1.y - p1.y;
    y += (1f - getAnimate()) * -10f;
    cw.setBounds(x - cw.getWidth() + jButton1.getWidth(), y + jButton1.getHeight(), cw.getWidth(), cw.getHeight());
    } else {
    super.correctBounds(cw);
    }
    }
    };
    }
    });
    }
    The override method for LayoutCallback is not working what might be the reason

    • @LaingRaven
      @LaingRaven  Před 6 měsíci

      This method has removed : github.com/DJ-Raven/glasspane-popup/releases/tag/v2.0.0